diff --git a/.azure-pipelines/config/credscan/credscan-suppressions.json b/.azure-pipelines/config/credscan/credscan-suppressions.json
index bdea919400..5f28ef7e57 100644
--- a/.azure-pipelines/config/credscan/credscan-suppressions.json
+++ b/.azure-pipelines/config/credscan/credscan-suppressions.json
@@ -5,6 +5,24 @@
"placeholder": "pa$$w0rd",
"_justification": "[Applications] hard code password in application password HTTP example"
},
+ {
+ "placeholder": "P@55w0rd",
+ "_justification": "[AuthenticationTests] hard code password in AuthenticationTest for self signed certificate"
+ },
+ {
+ "file": [
+ "src\\Authentication\\Authentication\\test\\Get-MgContext.Tests.ps1",
+ "src\\Authentication\\Authentication.Test\\Helpers\\AuthenticationHelpersTests.cs",
+ "src\\Authentication\\Authentication.Test\\Helpers\\AuthenticationHelpersTests.cs"
+ ],
+ "_justification": "[Authentication] Examples contain random values recognized as secret"
+ },
+ {
+ "file": [
+ "autorest.powershell\\docs\\samples\\timeswire\\readme.md"
+ ],
+ "_justification": "[AutoRest] Examples contain random values recognized as secret"
+ },
{
"file": [
"src\\Applications\\beta\\examples\\New-MgBetaServicePrincipalPasswordSingleSignOnCredentials.md",
@@ -29,6 +47,12 @@
"src\\DeviceManagement.Actions\\beta\\examples\\Update-MgBetaDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword.md"
],
"_justification": "[DeviceManagement.Actions] Examples contain random values recognized as secret"
+ },
+ {
+ "file": [
+ "tools\\Tests\\loadEnv.md"
+ ],
+ "_justification": "[ToolsTest] Examples contain random values recognized as secret"
}
]
}
diff --git a/.azure-pipelines/config/policheck/policheck-exclusions.xml b/.azure-pipelines/config/policheck/policheck-exclusions.xml
index f4be34cafa..5bb3709271 100644
--- a/.azure-pipelines/config/policheck/policheck-exclusions.xml
+++ b/.azure-pipelines/config/policheck/policheck-exclusions.xml
@@ -3,9 +3,9 @@
- openApiDocs|docs\exports|src\.*\examples
+ openApiDocs|docs\exports|src\.*\examples|src\.*\bin|src\.*\generated
-
+ AuthenticationHelpersTests.cs
diff --git a/.azure-pipelines/weekly-examples-update.yml b/.azure-pipelines/weekly-examples-update.yml
index 8c275cabd0..ee768b960b 100644
--- a/.azure-pipelines/weekly-examples-update.yml
+++ b/.azure-pipelines/weekly-examples-update.yml
@@ -1,94 +1,105 @@
-# Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
-
-trigger: none # disable triggers based on commits.
-pr: none # disable as a PR gate.
+# This Yaml Document has been converted by ESAI Yaml Pipeline Conversion Tool.
+# Please make sure to check all the converted content, it is your team's responsibility to make sure that the pipeline is still valid and functions as expected.
+# This pipeline will be extended to the OneESPT template
+# If you are not using the E+D shared hosted pool with windows-2022, replace the pool section with your hosted pool, os, and image name. If you are using a Linux image, you must specify an additional windows image for SDL: https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/1es-pipeline-templates/features/sdlanalysis/overview#how-to-specify-a-windows-pool-for-the-sdl-source-analysis-stage
+# The Task 'PublishBuildArtifacts@1' has been converted to an output named 'Publish Examples to be reviewed as artifact' in the templateContext section.
+trigger: none
+pr: none
name: 'PowerShellExamplesUpdateV2 Check'
schedules:
- - cron: "0 3 * * FRI" # every Friday at 3AM UTC (off hours for Redmond, Nairobi and Montréal)
- displayName: 'PowerShellExamplesUpdateV2'
- branches:
- include:
- - dev
- always: true
+- cron: "0 3 * * FRI"
+ displayName: 'PowerShellExamplesUpdateV2'
+ branches:
+ include:
+ - dev
+ always: true
parameters:
- name: PipelineTimeout
displayName: PipelineTimeout
type: number
default: 1200
-- name: BuildAgent
- displayName: Build Agent
- default: 1es-windows-ps-compute
-
resources:
- repositories:
- - repository: msgraph-sdk-powershell
- type: github
- endpoint: MicrosoftDocs
- name: microsoftgraph/msgraph-sdk-powershell
- ref: dev
-
-jobs:
-- job: PowerShellExamplesUpdateV2
- pool:
- name: ${{ parameters.BuildAgent }}
- timeoutInMinutes: ${{ parameters.PipelineTimeout }}
- steps:
- - template: ./common-templates/install-sdk.yml
- - task: PowerShell@2
- name: "ComputeBranch"
- displayName: "Compute weekly examples update branch name"
- inputs:
- targetType: inline
- script: |
- $branch = "{0}/{1}" -f "WeeklyExamplesUpdate", (Get-Date -Format yyyyMMddHHmm)
- Write-Host "Compute branch: $branch"
- Write-Host "##vso[task.setvariable variable=WeeklyExamplesBranch;isOutput=true]$branch"
-
- - task: Bash@3
- displayName: "Create weekly examples branch"
- inputs:
- targetType: inline
- script: |
- git status
- git branch $(ComputeBranch.WeeklyExamplesBranch)
- git checkout $(ComputeBranch.WeeklyExamplesBranch)
- git status
-
- - task: PowerShell@2
- displayName: 'Import Examples From API reference - V2'
- continueOnError: false
- inputs:
- targetType: 'filePath'
- pwsh: true
- filePath: tools\ImportExamples.ps1
-
- - task: PublishBuildArtifacts@1
- displayName: 'Publish Examples to be reviewed as artifact'
- inputs:
- PathtoPublish: 'examplesreport'
- ArtifactName: 'ExamplesToBeReviewed'
- publishLocation: 'Container'
- # StoreAsTar: true
-
- - task: PowerShell@2
- displayName: Pushing to github
- env:
- GITHUB_TOKEN: $(GITHUB_TOKEN)
- 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 status
- git add .
- git commit -m "Updating examples"
- git push --set-upstream https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git $(ComputeBranch.WeeklyExamplesBranch)
- git status
-
- - template: ./common-templates/create-pr.yml
- parameters:
- BaseBranch: "dev"
- TargetBranch: $(ComputeBranch.WeeklyExamplesBranch)
- Title: "[v2] Examples Update"
- 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
+ repositories:
+ - repository: msgraph-sdk-powershell
+ type: github
+ endpoint: MicrosoftDocs
+ name: microsoftgraph/msgraph-sdk-powershell
+ ref: dev
+ - repository: 1ESPipelineTemplates
+ type: git
+ name: 1ESPipelineTemplates/1ESPipelineTemplates
+ ref: refs/tags/release
+extends:
+ template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
+ parameters:
+ pool:
+ name: Azure-Pipelines-1ESPT-ExDShared
+ image: windows-2022
+ os: windows
+ sdl:
+ credscan:
+ suppressionsFile: $(Build.SourcesDirectory)/.azure-pipelines/config/credscan/credscan-suppressions.json
+ policheck:
+ exclusionFile: $(Build.SourcesDirectory)/.azure-pipelines/config/policheck/policheck-exclusions.xml
+ customBuildTags:
+ - ES365AIMigrationTooling
+ stages:
+ - stage: stage
+ jobs:
+ - job: PowerShellExamplesUpdateV2
+ timeoutInMinutes: ${{ parameters.PipelineTimeout }}
+ templateContext:
+ outputs:
+ - output: pipelineArtifact
+ displayName: 'Publish Examples to be reviewed as artifact'
+ targetPath: 'examplesreport'
+ artifactName: 'ExamplesToBeReviewed'
+ publishLocation: 'Container'
+ steps:
+ - template: .azure-pipelines/common-templates/install-sdk.yml@self
+ - task: PowerShell@2
+ name: "ComputeBranch"
+ displayName: "Compute weekly examples update branch name"
+ inputs:
+ targetType: inline
+ script: |
+ $branch = "{0}/{1}" -f "WeeklyExamplesUpdate", (Get-Date -Format yyyyMMddHHmm)
+ Write-Host "Compute branch: $branch"
+ Write-Host "##vso[task.setvariable variable=WeeklyExamplesBranch;isOutput=true]$branch"
+ - task: Bash@3
+ displayName: "Create weekly examples branch"
+ inputs:
+ targetType: inline
+ script: |
+ git status
+ git branch $(ComputeBranch.WeeklyExamplesBranch)
+ git checkout $(ComputeBranch.WeeklyExamplesBranch)
+ git status
+ - task: PowerShell@2
+ displayName: 'Import Examples From API reference - V2'
+ continueOnError: false
+ inputs:
+ targetType: 'filePath'
+ pwsh: true
+ filePath: tools\ImportExamples.ps1
+ - task: PowerShell@2
+ displayName: Pushing to github
+ env:
+ GITHUB_TOKEN: $(GITHUB_TOKEN)
+ 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 status
+ git add .
+ git commit -m "Updating examples"
+ git push --set-upstream https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git $(ComputeBranch.WeeklyExamplesBranch)
+ git status
+ - template: .azure-pipelines/common-templates/create-pr.yml@self
+ parameters:
+ BaseBranch: "dev"
+ TargetBranch: $(ComputeBranch.WeeklyExamplesBranch)
+ Title: "[v2] Examples Update"
+ 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
diff --git a/.azure-pipelines/weekly-generation.yml b/.azure-pipelines/weekly-generation.yml
index 9b54c3eb49..9189680588 100644
--- a/.azure-pipelines/weekly-generation.yml
+++ b/.azure-pipelines/weekly-generation.yml
@@ -1,170 +1,141 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
+# This Yaml Document has been converted by ESAI Yaml Pipeline Conversion Tool.
+# Please make sure to check all the converted content, it is your team's responsibility to make sure that the pipeline is still valid and functions as expected.
+# This pipeline will be extended to the OneESPT template
+# If you are not using the E+D shared hosted pool with windows-2022, replace the pool section with your hosted pool, os, and image name. If you are using a Linux image, you must specify an additional windows image for SDL: https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/1es-pipeline-templates/features/sdlanalysis/overview#how-to-specify-a-windows-pool-for-the-sdl-source-analysis-stage
+# The Task 'PublishBuildArtifacts@1' has been converted to an output named 'Publish Module Artifacts' in the templateContext section.
+# The Task 'NuGetCommand@2' has been converted to an output named 'Publish NuGet to feed' in the templateContext section.
+# Output added to job "MsGraphPsSdkWeeklyGeneration" with YAML conditionals extracted using AI. Review this expression against the originating file for correctness.
+# Output added to job "MsGraphPsSdkWeeklyGeneration" with YAML conditionals extracted using AI. Review this expression against the originating file for correctness.
name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
-
parameters:
- - name: BuildAgent
- displayName: Build Agent
- default: 1es-windows-ps-compute
- - name: BaseBranch
- displayName: Base Branch
- default: dev
- - name: GenerationBranch
- displayName: Generation branch
- default: v2/generation
- - name: SkipForceRefresh
- displayName: Skip Force Refresh
- default: false
- type: boolean
- - name: Test
- type: boolean
- default: true
- - name: Pack
- type: boolean
- default: true
- - name: Sign
- type: boolean
- default: true
- - name: CreatePullRequest
- type: boolean
- default: true
- - name: SkipOpenAPIDocsDownload
- displayName: Skip OpenAPI Docs Download
- default: false
- type: boolean
-
+- name: BuildAgent
+ displayName: Build Agent
+ default: 1es-windows-ps-compute
+- name: BaseBranch
+ displayName: Base Branch
+ default: dev
+- name: SkipForceRefresh
+ displayName: Skip Force Refresh
+ default: false
+ type: boolean
+- name: Test
+ type: boolean
+ default: true
+- name: Pack
+ type: boolean
+ default: true
+- name: Sign
+ type: boolean
+ default: true
+- name: CreatePullRequest
+ type: boolean
+ default: true
+- name: SkipOpenAPIDocsDownload
+ displayName: Skip OpenAPI Docs Download
+ default: false
+ type: boolean
variables:
Branch: "WeeklyApiRefresh"
BaseBranch: ${{ parameters.BaseBranch }}
- GenerationBranch: ${{ parameters.GenerationBranch }}
BuildAgent: ${{ parameters.BuildAgent }}
SkipForceRefresh: ${{ parameters.SkipForceRefresh }}
-
-pool: $(BuildAgent)
trigger: none
pr: none
schedules:
- - cron: "0 12 * * TUE" # Run every Tuesday at noon UTC
- displayName: "PS SDK Weekly Refresh"
- branches:
- include:
- - dev
- always: true
-jobs:
- - job: RefreshOpenAPIDocuments
- displayName: Refresh OpenApi documents
- timeoutInMinutes: 240
+- cron: "0 12 * * TUE"
+ displayName: "PS SDK Weekly Refresh"
+ branches:
+ include:
+ - dev
+ always: true
+resources:
+ repositories:
+ - repository: 1ESPipelineTemplates
+ type: git
+ name: 1ESPipelineTemplates/1ESPipelineTemplates
+ ref: refs/tags/release
+extends:
+ template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
+ parameters:
pool: $(BuildAgent)
- steps:
- - template: common-templates/download-openapi-docs.yml
- parameters:
- Branch: $(Branch)
- BaseBranch: $(BaseBranch)
- BuildAgent: $(BuildAgent)
- SkipForceRefresh: $(SkipForceRefresh)
- SkipOpenAPIDocsDownload: ${{ parameters.SkipOpenAPIDocsDownload }}
-
- - job: MsGraphPsSdkWeeklyGeneration
- dependsOn: RefreshOpenAPIDocuments
- displayName: Microsoft Graph PowerShell SDK Generation
- condition: and(succeeded(), ne(dependencies.RefreshOpenAPIDocuments.outputs['OpenAPIDocDiff.ModulesWithChanges'], ''))
- timeoutInMinutes: 840
- variables:
- WeeklyBranch: $[ dependencies.RefreshOpenAPIDocuments.outputs['ComputeBranch.WeeklyBranch'] ]
- steps:
- - template: ./common-templates/checkout.yml
- parameters:
- TargetBranch: $(WeeklyBranch)
- - template: ./common-templates/install-tools.yml
- - template: ./common-templates/security-pre-checks.yml
- - template: ./generation-templates/authentication-module.yml
- parameters:
- Test: ${{ parameters.Test }}
- Pack: ${{ parameters.Pack }}
- Sign: ${{ parameters.Sign }}
- - template: ./generation-templates/workload-modules.yml
- parameters:
- Test: ${{ parameters.Test }}
- Pack: ${{ parameters.Pack }}
- Sign: ${{ parameters.Sign }}
- - template: ./generation-templates/meta-module.yml
- parameters:
- Test: ${{ parameters.Test }}
- Pack: ${{ parameters.Pack }}
- Sign: ${{ parameters.Sign }}
- - ${{ if and(eq(parameters.Pack, true), eq(parameters.Sign, true)) }}:
- - template: ./common-templates/esrp/codesign-nuget.yml
- parameters:
- FolderPath: "$(Build.ArtifactStagingDirectory)"
- Pattern: "Microsoft.Graph*.nupkg"
- - task: PublishBuildArtifacts@1
- displayName: Publish Module Artifacts
- inputs:
- PathtoPublish: "$(Build.ArtifactStagingDirectory)"
- ArtifactName: "drop"
+ sdl:
+ binskim:
+ enabled: false
+ justificationForDisabling: "Binskim keeps on crushing and failing the weekly build pipeline. Disabling it for now because we are unable to publish the artifacts to internal feeds."
+ credscan:
+ suppressionsFile: $(Build.SourcesDirectory)/.azure-pipelines/config/credscan/credscan-suppressions.json
+ policheck:
+ exclusionFile: $(Build.SourcesDirectory)/.azure-pipelines/config/policheck/policheck-exclusions.xml
+ customBuildTags:
+ - ES365AIMigrationTooling
+ stages:
+ - stage: stage
+ jobs:
+ - job: RefreshOpenAPIDocuments
+ displayName: Refresh OpenApi documents
+ timeoutInMinutes: 1200
+ steps:
+ - template: .azure-pipelines/common-templates/download-openapi-docs.yml@self
+ parameters:
+ Branch: $(Branch)
+ BaseBranch: $(BaseBranch)
+ BuildAgent: $(BuildAgent)
+ SkipForceRefresh: $(SkipForceRefresh)
+ SkipOpenAPIDocsDownload: ${{ parameters.SkipOpenAPIDocsDownload }}
+ - job: MsGraphPsSdkWeeklyGeneration
+ dependsOn: RefreshOpenAPIDocuments
+ displayName: Microsoft Graph PowerShell SDK Generation
+ condition: and(succeeded(), ne(dependencies.RefreshOpenAPIDocuments.outputs['OpenAPIDocDiff.ModulesWithChanges'], ''))
+ timeoutInMinutes: 840
+ variables:
+ WeeklyBranch: $[ dependencies.RefreshOpenAPIDocuments.outputs['ComputeBranch.WeeklyBranch'] ]
+ templateContext:
+ outputs:
+ - ${{ if and(eq(parameters.Pack, true), eq(parameters.Sign, true)) }}:
+ - output: pipelineArtifact
+ displayName: 'Publish Module Artifacts'
+ targetPath: "$(Build.ArtifactStagingDirectory)"
+ artifactName: "drop"
publishLocation: "Container"
- - task: NuGetCommand@2
- displayName: Publish NuGet to feed
- inputs:
- command: push
+ - ${{ if and(eq(parameters.Pack, true), eq(parameters.Sign, true)) }}:
+ - output: nuget
+ displayName: 'Publish NuGet to feed'
+ packageParentPath: '$(Build.ArtifactStagingDirectory)'
packagesToPush: $(Build.ArtifactStagingDirectory)/**/Microsoft.Graph.*.nupkg
publishVstsFeed: $(PROJECT_NAME)/$(FEED_NAME)
allowPackageConflicts: true
- - template: ./generation-templates/generate-command-metadata.yml
- - template: ./common-templates/security-post-checks.yml
- - ${{ if eq(parameters.CreatePullRequest, true) }}:
- - template: common-templates/create-pr.yml
+ steps:
+ - template: .azure-pipelines/common-templates/checkout.yml@self
+ parameters:
+ TargetBranch: $(WeeklyBranch)
+ - template: .azure-pipelines/common-templates/install-tools.yml@self
+ - template: .azure-pipelines/common-templates/security-pre-checks.yml@self
+ - template: .azure-pipelines/generation-templates/authentication-module.yml@self
+ parameters:
+ Test: ${{ parameters.Test }}
+ Pack: ${{ parameters.Pack }}
+ Sign: ${{ parameters.Sign }}
+ - template: .azure-pipelines/generation-templates/workload-modules.yml@self
+ parameters:
+ Test: ${{ parameters.Test }}
+ Pack: ${{ parameters.Pack }}
+ Sign: ${{ parameters.Sign }}
+ - template: .azure-pipelines/generation-templates/meta-module.yml@self
+ parameters:
+ Test: ${{ parameters.Test }}
+ Pack: ${{ parameters.Pack }}
+ Sign: ${{ parameters.Sign }}
+ - ${{ if and(eq(parameters.Pack, true), eq(parameters.Sign, true)) }}:
+ - template: .azure-pipelines/common-templates/esrp/codesign-nuget.yml@self
+ parameters:
+ FolderPath: "$(Build.ArtifactStagingDirectory)"
+ Pattern: "Microsoft.Graph*.nupkg"
+ - template: .azure-pipelines/generation-templates/generate-command-metadata.yml@self
+ - template: .azure-pipelines/common-templates/security-post-checks.yml@self
+ - ${{ if eq(parameters.CreatePullRequest, true) }}:
+ - template: .azure-pipelines/common-templates/create-pr.yml@self
parameters:
BaseBranch: $(BaseBranch)
TargetBranch: $(WeeklyBranch)
Title: "[v2] Weekly OpenApiDocs Refresh"
- Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR."
- # Push SDK artifacts to generation branch.
- - task: PowerShell@2
- name: "ComputeGenerationBranch"
- displayName: "Compute weekly generation branch name"
- inputs:
- targetType: inline
- script: |
- $branch = "{0}/{1}" -f "WeeklyGeneration", (Get-Date -Format yyyyMMddHHmm)
- Write-Host "##vso[task.setvariable variable=WeeklyGenerationBranch;isOutput=true]$branch"
- - task: Bash@3
- displayName: "Create weekly generation branch"
- inputs:
- targetType: inline
- script: |
- git status
- git branch $(ComputeGenerationBranch.WeeklyGenerationBranch)
- git checkout $(ComputeGenerationBranch.WeeklyGenerationBranch)
- git status
- - task: Bash@3
- displayName: Commit Generated SDK artifacts
- enabled: true
- env:
- GITHUB_TOKEN: $(GITHUB_TOKEN)
- inputs:
- targetType: inline
- script: |
- git add .
- git commit -m 'Adds generated module artifacts'
- git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
- git status
- - task: Bash@3
- displayName: Sync with generation branch
- enabled: true
- env:
- GITHUB_TOKEN: $(GITHUB_TOKEN)
- inputs:
- targetType: inline
- script: |
- git merge $(GenerationBranch) -s ours
- git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git"
- git status
- - ${{ if eq(parameters.CreatePullRequest, true) }}:
- - template: common-templates/create-pr.yml
- parameters:
- BaseBranch: $(GenerationBranch)
- TargetBranch: $(ComputeGenerationBranch.WeeklyGenerationBranch)
- Title: "[v2] Weekly Generated Module Artifacts"
- Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR."
+ 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
diff --git a/.github/ISSUE_TEMPLATE/01-sdk-bug.yml b/.github/ISSUE_TEMPLATE/01-sdk-bug.yml
new file mode 100644
index 0000000000..3914bdae8c
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/01-sdk-bug.yml
@@ -0,0 +1,110 @@
+name: SDK Bug Report
+description: File SDK bug report
+labels: ["type:bug", "status:waiting-for-triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ **Thank you for taking the time to fill out this bug report!**
+ 💥Before submitting a new request, please search existing issues to see if an issue already exists.
+ 💥You may also check whether you can reproduce this issue using the latest released version of [Microsoft.Graph](https://www.powershellgallery.com/packages/Microsoft.Graph) or [Microsoft.Graph.Beta](https://www.powershellgallery.com/packages/Microsoft.Graph.Beta).
+ - type: textarea
+ id: description
+ attributes:
+ label: Describe the bug
+ description: |
+ Provide a description of the actual behavior observed. If applicable please include any error messages, exception stacktraces or a screenshot.
+ placeholder: I am trying to do [...] but [...]
+ validations:
+ required: true
+ - type: textarea
+ id: expected-behavior
+ attributes:
+ label: Expected behavior
+ description: |
+ A clear and concise description of what you expected to happen.
+ placeholder: Expected behavior
+ validations:
+ required: true
+ - type: textarea
+ id: repro-steps
+ attributes:
+ label: How to reproduce
+ description: |
+ Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or steps to run project in link above. If possible include text as text rather than screenshots (so it shows up in searches).
+ If there's a link to a public repo where the sample code exists, include it too.
+ placeholder: |
+ 1. Execute `-Mg-` with `...`
+ 2. See error at `...`
+ validations:
+ required: true
+ - type: input
+ attributes:
+ label: SDK Version
+ placeholder: e.g. 5.32.1
+ description: |
+ Version of the SDK with the bug described above.
+ * Please run `Get-Module Microsoft.Graph*` after cmdlet execution and paste the output here.
+ * If a module cannot be installed or imported, please run `Get-Module -ListAvailable` and paste the output.
+ validations:
+ required: false
+ - type: input
+ id: regression
+ attributes:
+ label: Latest version known to work for scenario above?
+ description: |
+ Did this work in a previous build or release of the SDK or API client? If you can try a previous release or build to find out, that can help us narrow down the problem. If you don't know, that's OK.
+ placeholder: version-number
+ validations:
+ required: false
+ - type: textarea
+ id: known-workarounds
+ attributes:
+ label: Known Workarounds
+ description: |
+ Please provide a description of any known workarounds.
+ placeholder: Known Workarounds
+ validations:
+ required: false
+ - type: textarea
+ id: logs
+ attributes:
+ label: Debug output
+ description: |
+ Please copy and paste the output when using the `-Debug` flag. This will be automatically formatted into code, so no need for backticks.
+ Be sure to remove any sensitive information that may be in the logs.
+ value: |
+ Click to expand log
+ ```
+
+
+
+ ```
+
+ validations:
+ required: false
+ - type: textarea
+ id: configuration
+ attributes:
+ label: Configuration
+ description: |
+ Please provide more information on your SDK configuration:
+ * Please run `$PSVersionTable` and paste the output below.
+ * If running the Docker container image, indicate the tag of the image used and the version of Docker engine.
+ * What OS and version, and what distro if applicable (Windows 10, Windows 11, MacOS Catalina, Ubuntu 22.04)?
+ * What is the architecture (x64, x86, ARM, ARM64)?
+ * Do you know whether it is specific to that configuration?
+ placeholder: |
+ - OS:
+ - architecture:
+ validations:
+ required: false
+ - type: textarea
+ id: other-info
+ attributes:
+ label: Other information
+ description: |
+ If you have an idea where the problem might lie, let us know that here. Please include any pointers to code, relevant changes, or related issues you know of.
+ placeholder: Other information
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/02-sdk-feature-request.yml b/.github/ISSUE_TEMPLATE/02-sdk-feature-request.yml
new file mode 100644
index 0000000000..5d1d2730c5
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/02-sdk-feature-request.yml
@@ -0,0 +1,30 @@
+name: SDK Feature request
+description: Request a new feature on the SDK
+labels: ["type:feature", "status:waiting-for-triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ **Thank you for taking the time to fill out this feature request form!**
+ 💥Please search to see if an issue already exists for the feature you are requesting.
+ - type: textarea
+ attributes:
+ label: Is your feature request related to a problem? Please describe the problem.
+ description: A clear and concise description of what the problem is.
+ placeholder: I am trying to do [...] but [...]
+ validations:
+ required: false
+ - type: textarea
+ attributes:
+ label: Describe the solution you'd like.
+ description: |
+ A clear and concise description of what you want to happen. Include any alternative solutions you've considered.
+ validations:
+ required: true
+ - type: textarea
+ attributes:
+ label: Additional context?
+ description: |
+ Add any other context or screenshots about the feature request here.
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/03-blank-issue.md b/.github/ISSUE_TEMPLATE/03-blank-issue.md
new file mode 100644
index 0000000000..c28185e25e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/03-blank-issue.md
@@ -0,0 +1,8 @@
+---
+name: Blank issue
+about: Something that doesn't fit the other categories
+title: ''
+labels: ["status:waiting-for-triage"]
+assignees: ''
+
+---
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index aae841763c..0000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,44 +0,0 @@
----
-name: Client bug report
-about: Report an issue that is caused by the SDK
-title: "[Client bug]: provide a descriptive title here"
-labels: client bug
-assignees: ''
-
----
-
-### **Describe the bug**
-
-A clear and concise description of what the bug is.
-
-### **To Reproduce**
-
-Steps to reproduce the behavior:
-
-1. Run Connect-MgGraph with '...'
-2. Run command '....'
-3. See error
-
-### **Expected behavior**
-
-A clear and concise description of what you expected to happen.
-
-### **Screenshots**
-
-If applicable, add screenshots to help explain your problem.
-
-### **SDK version**
-
-Provide the SDK version number from `Get-Module Microsoft.Graph -ListAvailable | select Name, Version`.
-
-### **Environment (please complete the following information):**
-
-Provide the following environment information from the `$PSVersionTable` variable:
-
-- PSVersion: [e.g. 7.2.1]
-- OS: [e.g. Windows]
-- Platform [e.g. Win32NT]
-
-### **Additional context**
-
-Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000..2bec0ab781
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,14 @@
+blank_issues_enabled: true
+contact_links:
+ - name: For issues related to authentication and service errors
+ url: https://learn.microsoft.com/powershell/microsoftgraph/troubleshooting
+ about: please refer to our troubleshooting guide
+ - name: Question on use of powershell sdk
+ url: https://github.com/microsoftgraph/msgraph-sdk-powershell/discussions
+ about: Please add your question in the discussions section of the repo
+ - name: Question on use of kiota
+ url: https://github.com/microsoft/kiota/discussions
+ about: Please add your question in the discussions section of the repo
+ - name: Question, bug report or feature Request for the MS Graph API
+ url: https://aka.ms/msgraphsupport
+ about: Report an issue or limitation with the MS Graph service APIs
diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md
deleted file mode 100644
index 887d0382cc..0000000000
--- a/.github/ISSUE_TEMPLATE/custom.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-name: Custom issue template
-about: Describe this issue template's purpose here.
-title: ''
-labels: ''
-assignees: ''
-
----
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index bbcbbe7d61..0000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features you've considered.
-
-**Additional context**
-Add any other context or screenshots about the feature request here.
diff --git a/.github/ISSUE_TEMPLATE/microsoft-graph-powershell-bug-report.md b/.github/ISSUE_TEMPLATE/microsoft-graph-powershell-bug-report.md
deleted file mode 100644
index 991957255e..0000000000
--- a/.github/ISSUE_TEMPLATE/microsoft-graph-powershell-bug-report.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-name: Microsoft Graph PowerShell Bug Report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-
----
-
-Thanks for reporting the bug. Please ensure you've gone through the following checklist before opening an issue:
-- Make sure you can reproduce this issue using the latest released version of [Microsoft.Graph](https://www.powershellgallery.com/packages/Microsoft.Graph) or [Microsoft.Graph.Beta](https://www.powershellgallery.com/packages/Microsoft.Graph.Beta).
-- Please search the existing issues to see if there has been a similar issue filed.
-- For issues related to authentication and service errors, please refer to our [troubleshooting guide](https://learn.microsoft.com/powershell/microsoftgraph/troubleshooting). For service issues, please open a question at https://developer.microsoft.com/graph/support.
-
-**Describe the bug**
-> A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Execute `-Mg-` with `...`
-2. See error at `...`
-
-**Expected behavior**
-> A clear and concise description of what you expected to happen.
-
-**Debug Output**
-> Run the problematic command with `-Debug` and paste the resulting debug stream below.
-> ⚠ ATTENTION: Be sure to remove any sensitive information that may be in the logs.
-
-**Module Version**
-> Please run `Get-Module Microsoft.Graph*` after cmdlet execution and paste the output below.
-> If a module cannot be installed or imported, please run `Get-Module -ListAvailable` and paste the output.
-
-**Environment Data**
-> Please run `$PSVersionTable` and paste the output below. If running the Docker container image, indicate the tag of the image used and the version of Docker engine.
-
-**Screenshots**
-> If applicable, add screenshots to help explain your problem.
-
-**Additional context**
-> Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/service-bug-report-instructions.md b/.github/ISSUE_TEMPLATE/service-bug-report-instructions.md
deleted file mode 100644
index 993181e6f7..0000000000
--- a/.github/ISSUE_TEMPLATE/service-bug-report-instructions.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-name: Service bug report instructions
-about: Learn how you can open an issue against the Microsoft Graph REST API.
-title: ''
-labels: service bug
-assignees: ''
-
----
-
-1. Open https://developer.microsoft.com/en-us/graph/support
-2. From the main page, you can:
- - Ask a question or provide feedback on our APIs or docs.
- - Report issues with the service.
diff --git a/.gitmodules b/.gitmodules
index d8e372a2f5..8cdc33c02e 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,4 +1,4 @@
[submodule "autorest.powershell"]
path = autorest.powershell
url = https://github.com/microsoftgraph/autorest.powershell
- branch = powershell-v2
+ branch = powershell_v2
diff --git a/autorest.powershell b/autorest.powershell
index 747638f7db..99541472d9 160000
--- a/autorest.powershell
+++ b/autorest.powershell
@@ -1 +1 @@
-Subproject commit 747638f7dbb12bcaa76b4790c7072dfb2bff5af7
+Subproject commit 99541472d90ae6b7621e376d5b10d2ab3eb90b15
diff --git a/config/ModuleMetadata.json b/config/ModuleMetadata.json
index dc4101cfd2..a5136fbceb 100644
--- a/config/ModuleMetadata.json
+++ b/config/ModuleMetadata.json
@@ -27,15 +27,15 @@
"versions": {
"authentication": {
"prerelease": "",
- "version": "2.17.0"
+ "version": "2.18.0"
},
"beta": {
"prerelease": "",
- "version": "2.17.0"
+ "version": "2.18.0"
},
"v1.0": {
"prerelease": "",
- "version": "2.17.0"
+ "version": "2.18.0"
}
}
}
diff --git a/openApiDocs/beta/Applications.yml b/openApiDocs/beta/Applications.yml
index 915a833bb7..1280fcd4e6 100644
--- a/openApiDocs/beta/Applications.yml
+++ b/openApiDocs/beta/Applications.yml
@@ -1493,7 +1493,7 @@ paths:
tags:
- applications.Actions
summary: Invoke action addPassword
- description: Adds a strong password to an application.
+ description: Adds a strong password to an application. You can also add passwords while creating the application.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0
@@ -21792,6 +21792,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -25276,7 +25282,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -25829,6 +25835,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -25912,6 +25965,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -26544,7 +26603,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -28598,11 +28657,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -31694,6 +31753,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -34576,7 +34679,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -34585,19 +34688,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -34605,19 +34708,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -34625,12 +34728,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -34647,13 +34750,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -35290,11 +35393,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -38198,6 +38301,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -46720,6 +46825,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Bookings.yml b/openApiDocs/beta/Bookings.yml
index 97e31d5acd..4b5fe641b9 100644
--- a/openApiDocs/beta/Bookings.yml
+++ b/openApiDocs/beta/Bookings.yml
@@ -15272,11 +15272,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/CloudCommunications.yml b/openApiDocs/beta/CloudCommunications.yml
index feee2de9ad..09fa7c213a 100644
--- a/openApiDocs/beta/CloudCommunications.yml
+++ b/openApiDocs/beta/CloudCommunications.yml
@@ -10593,11 +10593,11 @@ paths:
get:
tags:
- users.presence
- summary: Get presence
- description: Get a user's presence information.
+ summary: 'presence: setStatusMessage'
+ description: Set a presence status message for a user. An optional expiration date and time can be supplied.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0
operationId: user_GetPresence
parameters:
- name: user-id
@@ -12595,11 +12595,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Compliance.yml b/openApiDocs/beta/Compliance.yml
index 8b0e4b0124..3952fa3813 100644
--- a/openApiDocs/beta/Compliance.yml
+++ b/openApiDocs/beta/Compliance.yml
@@ -12780,11 +12780,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/CrossDeviceExperiences.yml b/openApiDocs/beta/CrossDeviceExperiences.yml
index 793a0bfb83..18b91c18a9 100644
--- a/openApiDocs/beta/CrossDeviceExperiences.yml
+++ b/openApiDocs/beta/CrossDeviceExperiences.yml
@@ -4957,7 +4957,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -6385,6 +6385,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -9241,6 +9247,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -9324,6 +9377,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -9956,7 +10015,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -10803,11 +10862,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -12696,11 +12755,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -14304,6 +14363,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -16941,7 +17044,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -16950,19 +17053,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -16970,19 +17073,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -16990,12 +17093,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -17012,13 +17115,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -19480,6 +19583,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -28969,6 +29074,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/DeviceManagement.Actions.yml b/openApiDocs/beta/DeviceManagement.Actions.yml
index 65132c9f9f..00f829a3d0 100644
--- a/openApiDocs/beta/DeviceManagement.Actions.yml
+++ b/openApiDocs/beta/DeviceManagement.Actions.yml
@@ -32741,11 +32741,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/DeviceManagement.Administration.yml b/openApiDocs/beta/DeviceManagement.Administration.yml
index 2c0c2551c9..2be204fe91 100644
--- a/openApiDocs/beta/DeviceManagement.Administration.yml
+++ b/openApiDocs/beta/DeviceManagement.Administration.yml
@@ -32937,11 +32937,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/DeviceManagement.Functions.yml b/openApiDocs/beta/DeviceManagement.Functions.yml
index 001ddce3b2..f9b87ed0f0 100644
--- a/openApiDocs/beta/DeviceManagement.Functions.yml
+++ b/openApiDocs/beta/DeviceManagement.Functions.yml
@@ -5612,11 +5612,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/DeviceManagement.yml b/openApiDocs/beta/DeviceManagement.yml
index 4ba5259c74..3833a96309 100644
--- a/openApiDocs/beta/DeviceManagement.yml
+++ b/openApiDocs/beta/DeviceManagement.yml
@@ -12074,6 +12074,197 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
+ /deviceManagement/deviceConfigurationProfiles:
+ get:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Get deviceConfigurationProfiles from deviceManagement
+ description: Profile Id of the object.
+ operationId: deviceManagement_ListDeviceConfigurationProfile
+ parameters:
+ - $ref: '#/components/parameters/top'
+ - $ref: '#/components/parameters/skip'
+ - $ref: '#/components/parameters/search'
+ - $ref: '#/components/parameters/filter'
+ - $ref: '#/components/parameters/count'
+ - name: $orderby
+ in: query
+ description: Order items by property values
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ type: string
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ type: string
+ responses:
+ 2XX:
+ $ref: '#/components/responses/microsoft.graph.deviceConfigurationProfileCollectionResponse'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-pageable:
+ nextLinkName: '@odata.nextLink'
+ operationName: listMore
+ x-ms-docs-operation-type: operation
+ post:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Create new navigation property to deviceConfigurationProfiles for deviceManagement
+ operationId: deviceManagement_CreateDeviceConfigurationProfile
+ requestBody:
+ description: New navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ required: true
+ responses:
+ 2XX:
+ description: Created navigation property.
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ '/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}':
+ get:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Get deviceConfigurationProfiles from deviceManagement
+ description: Profile Id of the object.
+ operationId: deviceManagement_GetDeviceConfigurationProfile
+ parameters:
+ - name: deviceConfigurationProfile-id
+ in: path
+ description: The unique identifier of deviceConfigurationProfile
+ required: true
+ style: simple
+ schema:
+ type: string
+ x-ms-docs-key-type: deviceConfigurationProfile
+ - name: $select
+ in: query
+ description: Select properties to be returned
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ type: string
+ - name: $expand
+ in: query
+ description: Expand related entities
+ style: form
+ explode: false
+ schema:
+ uniqueItems: true
+ type: array
+ items:
+ type: string
+ responses:
+ 2XX:
+ description: Retrieved navigation property
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ patch:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Update the navigation property deviceConfigurationProfiles in deviceManagement
+ operationId: deviceManagement_UpdateDeviceConfigurationProfile
+ parameters:
+ - name: deviceConfigurationProfile-id
+ in: path
+ description: The unique identifier of deviceConfigurationProfile
+ required: true
+ style: simple
+ schema:
+ type: string
+ x-ms-docs-key-type: deviceConfigurationProfile
+ requestBody:
+ description: New navigation property values
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ required: true
+ responses:
+ 2XX:
+ description: Success
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ delete:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Delete navigation property deviceConfigurationProfiles for deviceManagement
+ operationId: deviceManagement_DeleteDeviceConfigurationProfile
+ parameters:
+ - name: deviceConfigurationProfile-id
+ in: path
+ description: The unique identifier of deviceConfigurationProfile
+ required: true
+ style: simple
+ schema:
+ type: string
+ x-ms-docs-key-type: deviceConfigurationProfile
+ - name: If-Match
+ in: header
+ description: ETag
+ style: simple
+ schema:
+ type: string
+ responses:
+ 2XX:
+ description: Success
+ default:
+ $ref: '#/components/responses/error'
+ x-ms-docs-operation-type: operation
+ /deviceManagement/deviceConfigurationProfiles/$count:
+ get:
+ tags:
+ - deviceManagement.deviceConfigurationProfile
+ summary: Get the number of the resource
+ operationId: deviceManagement.deviceConfigurationProfile_GetCount
+ parameters:
+ - $ref: '#/components/parameters/search'
+ - $ref: '#/components/parameters/filter'
+ responses:
+ 2XX:
+ $ref: '#/components/responses/ODataCountResponse'
+ default:
+ $ref: '#/components/responses/error'
/deviceManagement/deviceConfigurations:
get:
tags:
@@ -27331,7 +27522,7 @@ paths:
tags:
- deviceManagement.mobileAppTroubleshootingEvent
summary: Get appLogCollectionRequests from deviceManagement
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
operationId: deviceManagement.mobileAppTroubleshootingEvent_ListAppLogCollectionRequest
parameters:
- name: mobileAppTroubleshootingEvent-id
@@ -27422,7 +27613,7 @@ paths:
tags:
- deviceManagement.mobileAppTroubleshootingEvent
summary: Get appLogCollectionRequests from deviceManagement
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
operationId: deviceManagement.mobileAppTroubleshootingEvent_GetAppLogCollectionRequest
parameters:
- name: mobileAppTroubleshootingEvent-id
@@ -42874,6 +43065,12 @@ components:
x-ms-navigationProperty: true
deviceConfigurationDeviceStateSummaries:
$ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary'
+ deviceConfigurationProfiles:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ description: Profile Id of the object.
+ x-ms-navigationProperty: true
deviceConfigurationRestrictedAppsViolations:
type: array
items:
@@ -43004,6 +43201,18 @@ components:
$ref: '#/components/schemas/microsoft.graph.groupPolicyUploadedDefinitionFile'
description: The available group policy uploaded definition files for this account.
x-ms-navigationProperty: true
+ hardwareConfigurations:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfiguration'
+ description: The hardware configurations for this account.
+ x-ms-navigationProperty: true
+ hardwarePasswordInfo:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.hardwarePasswordInfo'
+ description: The hardware password info for this account.
+ x-ms-navigationProperty: true
importedDeviceIdentities:
type: array
items:
@@ -45069,26 +45278,26 @@ components:
nullable: true
categoryId:
type: string
- description: Specifies the area group under which the setting is configured in a specified configuration service provider (CSP)
+ description: Specify category in which the setting is under. Support $filters.
nullable: true
description:
type: string
- description: Description of the item
+ description: Description of the setting.
nullable: true
displayName:
type: string
- description: Display name of the item
+ description: 'Name of the setting. For example: Allow Toast.'
nullable: true
helpText:
type: string
- description: Help text of the item
+ description: Help text of the setting. Give more details of the setting.
nullable: true
infoUrls:
type: array
items:
type: string
nullable: true
- description: List of links more info for the setting can be found at
+ description: List of links more info for the setting can be found at.
keywords:
type: array
items:
@@ -45112,7 +45321,7 @@ components:
description: List of referred setting information.
rootDefinitionId:
type: string
- description: Root setting definition if the setting is a child setting.
+ description: Root setting definition id if the setting is a child setting.
nullable: true
settingUsage:
$ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingUsage'
@@ -45964,6 +46173,53 @@ components:
format: int32
additionalProperties:
type: object
+ microsoft.graph.deviceConfigurationProfile:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: deviceConfigurationProfile
+ type: object
+ properties:
+ accountId:
+ type: string
+ description: Account Id.
+ nullable: true
+ configurationTechnologies:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Configuration Technologies for Settins Catalog Policies
+ format: int32
+ createdDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: The date and time the object was created.
+ format: date-time
+ lastModifiedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: The date and time the entity was last modified.
+ format: date-time
+ platformType:
+ $ref: '#/components/schemas/microsoft.graph.platformType'
+ profileName:
+ type: string
+ description: Profile name
+ nullable: true
+ profileType:
+ $ref: '#/components/schemas/microsoft.graph.profileType'
+ roleScopeTagIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: The list of scope tags for the configuration.
+ templateId:
+ type: string
+ description: TemplateId for Settings Catalog Policies
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'The listing service profile entity contains the meta data of an Intune configuration profile '
microsoft.graph.deviceConfiguration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -47993,7 +48249,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -53033,6 +53289,100 @@ components:
additionalProperties:
type: object
description: The entity represents an ADMX (Administrative Template) XML file uploaded by Administrator. The ADMX file contains a collection of group policy definitions and their locations by category path. The group policy definition file also contains the languages supported as determined by the language dependent ADML (Administrative Template) language files.
+ microsoft.graph.hardwareConfiguration:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwareConfiguration
+ type: object
+ properties:
+ configurationFileContent:
+ type: string
+ description: File content of the hardware configuration
+ format: base64url
+ createdDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: Timestamp of when the hardware configuration was created. This property is read-only.
+ format: date-time
+ readOnly: true
+ description:
+ type: string
+ description: Description of the hardware configuration
+ nullable: true
+ displayName:
+ type: string
+ description: Name of the hardware configuration
+ fileName:
+ type: string
+ description: File name of the hardware configuration
+ hardwareConfigurationFormat:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationFormat'
+ lastModifiedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: Timestamp of when the hardware configuration was modified. This property is read-only.
+ format: date-time
+ readOnly: true
+ perDevicePasswordDisabled:
+ type: boolean
+ description: A value indicating whether per devcive pasword disabled
+ roleScopeTagIds:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: List of Scope Tag IDs for the hardware configuration
+ version:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: 'Version of the hardware configuration (E.g. 1, 2, 3 ...)'
+ format: int32
+ assignments:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationAssignment'
+ description: List of the Azure AD user group ids that hardware configuration will be applied to. Only security groups and Office 365 Groups are supported.
+ x-ms-navigationProperty: true
+ deviceRunStates:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationDeviceState'
+ description: List of run states for the hardware configuration across all devices
+ x-ms-navigationProperty: true
+ runSummary:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationRunSummary'
+ userRunStates:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.hardwareConfigurationUserState'
+ description: List of run states for the hardware configuration across all users
+ x-ms-navigationProperty: true
+ additionalProperties:
+ type: object
+ description: 'BIOS configuration and other settings provides customers the ability to configure hardware/bios settings on the enrolled Windows 10/11 Entra ID joined devices by uploading a configuration file generated with their OEM tool (e.g. Dell Command tool). A BIOS configuration policy can be assigned to multiple devices, allowing admins to remotely control a device''s hardware properties (e.g. enable Secure Boot) from the Intune Portal.'
+ microsoft.graph.hardwarePasswordInfo:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwarePasswordInfo
+ type: object
+ properties:
+ currentPassword:
+ type: string
+ description: Current device password
+ nullable: true
+ previousPasswords:
+ type: array
+ items:
+ type: string
+ nullable: true
+ description: List of previous device passwords
+ serialNumber:
+ type: string
+ description: Device serial number
+ additionalProperties:
+ type: object
+ description: Intune will provide customer the ability to configure hardware/bios settings on the enrolled windows 10 Azure Active Directory joined devices.
microsoft.graph.importedDeviceIdentity:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -53459,11 +53809,6 @@ components:
description: 'Indicates the last DateTime that the request was modified. The value cannot be modified and is automatically populated whenever values in the request are updated. For example, when the ''status'' property changes from needsApproval to approved. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only. This property is read-only.'
format: date-time
readOnly: true
- operationApprovalPolicies:
- type: string
- description: The operational approval policies used in the request. Indicates the policy and platform combinations that are required for this request to be approved or rejected. Read-only. This property is read-only.
- nullable: true
- readOnly: true
requestDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
@@ -54061,6 +54406,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.cloudPcBulkAction'
+ description: Bulk actions applied to a Cloud PC.
x-ms-navigationProperty: true
cloudPCs:
type: array
@@ -54174,6 +54520,10 @@ components:
extractHardwareHash:
type: boolean
description: HardwareHash Extraction for the profile
+ hardwareHashExtractionEnabled:
+ type: boolean
+ description: 'Indicates whether the profile supports the extraction of hardware hash values and registration of the device into Windows Autopilot. When TRUE, indicates if hardware extraction and Windows Autopilot registration will happen on the next successful check-in. When FALSE, hardware hash extraction and Windows Autopilot registration will not happen. Default value is FALSE. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.'
+ nullable: true
language:
type: string
description: Language configured on the device
@@ -54183,12 +54533,22 @@ components:
type: string
description: Profile last modified time
format: date-time
+ locale:
+ type: string
+ description: 'The locale (language) to be used when configuring the device. E.g. en-US. The default value is os-default. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.'
+ nullable: true
managementServiceAppId:
type: string
description: AzureAD management app ID used during client device-based enrollment discovery
nullable: true
+ outOfBoxExperienceSetting:
+ $ref: '#/components/schemas/microsoft.graph.outOfBoxExperienceSetting'
outOfBoxExperienceSettings:
$ref: '#/components/schemas/microsoft.graph.outOfBoxExperienceSettings'
+ preprovisioningAllowed:
+ type: boolean
+ description: 'Indicates whether the user is allowed to use Windows Autopilot for pre-provisioned deployment mode during Out of Box experience (OOBE). When TRUE, indicates that Windows Autopilot for pre-provisioned deployment mode for OOBE is allowed to be used. When false, Windows Autopilot for pre-provisioned deployment mode for OOBE is not allowed. The default is FALSE.'
+ nullable: true
roleScopeTagIds:
type: array
items:
@@ -56668,6 +57028,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -57819,25 +58185,25 @@ components:
modelAsString: false
values:
- value: none
- description: Default. No platform type specified.
+ description: Indicates the settings contained in this configuration don't have a platform set.
name: none
- value: android
- description: Settings for Android platform.
+ description: 'Indicates that the settings contained in associated configuration applies to the Android operating system. '
name: android
- value: iOS
- description: Settings for iOS platform.
+ description: Indicates that the settings contained in associated configuration applies to the iOS operating system.
name: iOS
- value: macOS
- description: Settings for MacOS platform.
+ description: Indicates that the settings contained in associated configuration applies to the MacOS operating system.
name: macOS
- value: windows10X
- description: Windows 10 X.
+ description: Indicates that the settings contained in associated configuration applies to the Windows 10X operating system.
name: windows10X
- value: windows10
- description: Settings for Windows 10 platform.
+ description: Indicates that the settings contained in associated configuration applies to the Windows 10 operating system.
name: windows10
- value: linux
- description: Settings for Linux platform.
+ description: Indicates that the settings contained in associated configuration applies to the Linux operating system.
name: linux
- value: unknownFutureValue
description: Evolvable enumeration sentinel value. Do not use.
@@ -58043,7 +58409,7 @@ components:
properties:
settingDefinitionId:
type: string
- description: Setting definition id that is being referred to a setting. Applicable for reusable setting.
+ description: Setting definition id that is being referred to a setting. Applicable for reusable setting
nullable: true
additionalProperties:
type: object
@@ -58394,6 +58760,80 @@ components:
- value: remoteLock
description: Remotely lock the device
name: remoteLock
+ microsoft.graph.platformType:
+ title: platformType
+ enum:
+ - none
+ - android
+ - androidEnterprise
+ - iOS
+ - macOS
+ - windows10X
+ - windows10
+ type: string
+ description: Platform Type
+ x-ms-enum:
+ name: platformType
+ modelAsString: false
+ values:
+ - value: none
+ description: None Platform Type
+ name: none
+ - value: android
+ description: Android Platform Type
+ name: android
+ - value: androidEnterprise
+ description: Android Enterprise Platform Type
+ name: androidEnterprise
+ - value: iOS
+ description: iOS Platform Type
+ name: iOS
+ - value: macOS
+ description: MacOS Platform Type
+ name: macOS
+ - value: windows10X
+ description: Windows 10X Platform Type
+ name: windows10X
+ - value: windows10
+ description: Windows 10 Platform Type
+ name: windows10
+ microsoft.graph.profileType:
+ title: profileType
+ enum:
+ - settingsCatalog
+ - administrativeTemplates
+ - importedADMXTemplates
+ - oemAppConfig
+ - hardwareConfig
+ - dcV1EndpointProtection
+ - dcV1DeviceRestrictions
+ type: string
+ description: Profile Type
+ x-ms-enum:
+ name: profileType
+ modelAsString: false
+ values:
+ - value: settingsCatalog
+ description: Settings catalog profile type
+ name: settingsCatalog
+ - value: administrativeTemplates
+ description: Administrative Templates Profile Type
+ name: administrativeTemplates
+ - value: importedADMXTemplates
+ description: Imported Administrative Templates Profile Type
+ name: importedADMXTemplates
+ - value: oemAppConfig
+ description: OEM Device related App Config Profile Type
+ name: oemAppConfig
+ - value: hardwareConfig
+ description: Hardware Configuration Profile Type
+ name: hardwareConfig
+ - value: dcV1EndpointProtection
+ description: DCV1 Endpoint Protection Profile Type
+ name: dcV1EndpointProtection
+ - value: dcV1DeviceRestrictions
+ description: DCV1 Device Restrictions Profile Type
+ name: dcV1DeviceRestrictions
microsoft.graph.deviceManagementApplicabilityRuleDeviceMode:
title: deviceManagementApplicabilityRuleDeviceMode
type: object
@@ -59493,6 +59933,7 @@ components:
- pauseConfigurationRefresh
- initiateDeviceAttestation
- changeAssignments
+ - delete
type: string
description: Remote actions Intune supports.
x-ms-enum:
@@ -59613,6 +60054,9 @@ components:
- value: changeAssignments
description: Indicates remote device action to override assignments for a Device.
name: changeAssignments
+ - value: delete
+ description: Indicates remote device action to delete a device from Intune portal.
+ name: delete
microsoft.graph.actionState:
title: actionState
enum:
@@ -60849,6 +61293,19 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.deviceConfigurationProfileCollectionResponse:
+ title: Collection of deviceConfigurationProfile
+ type: object
+ properties:
+ value:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfile'
+ '@odata.nextLink':
+ type: string
+ nullable: true
+ additionalProperties:
+ type: object
microsoft.graph.deviceConfigurationCollectionResponse:
title: Collection of deviceConfiguration
type: object
@@ -62090,11 +62547,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -63899,6 +64356,237 @@ components:
additionalProperties:
type: object
description: The entity represents an group policy operation.
+ microsoft.graph.hardwareConfigurationFormat:
+ title: hardwareConfigurationFormat
+ enum:
+ - dell
+ - surface
+ - surfaceDock
+ type: string
+ description: Indicates the supported oems of hardware configuration
+ x-ms-enum:
+ name: hardwareConfigurationFormat
+ modelAsString: false
+ values:
+ - value: dell
+ description: Dell
+ name: dell
+ - value: surface
+ description: Surface
+ name: surface
+ - value: surfaceDock
+ description: Surface dock
+ name: surfaceDock
+ microsoft.graph.hardwareConfigurationAssignment:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwareConfigurationAssignment
+ type: object
+ properties:
+ target:
+ $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget'
+ additionalProperties:
+ type: object
+ description: Contains properties used to assign a hardware configuration to a group.
+ microsoft.graph.hardwareConfigurationDeviceState:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwareConfigurationDeviceState
+ type: object
+ properties:
+ assignmentFilterIds:
+ type: string
+ description: A list of identifier strings of different assignment filters applied
+ nullable: true
+ configurationError:
+ type: string
+ description: Error from the hardware configuration execution
+ nullable: true
+ configurationOutput:
+ type: string
+ description: Output of the hardware configuration execution
+ nullable: true
+ configurationState:
+ $ref: '#/components/schemas/microsoft.graph.runState'
+ deviceName:
+ type: string
+ description: The name of the device
+ nullable: true
+ internalVersion:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: The Policy internal version
+ format: int32
+ lastStateUpdateDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: The last timestamp of when the hardware configuration executed
+ format: date-time
+ osVersion:
+ type: string
+ description: 'Operating system version of the device (E.g. 10.0.19042.1165, 10.0.19042.1288 etc.)'
+ nullable: true
+ upn:
+ type: string
+ description: User Principal Name (UPN).
+ nullable: true
+ userId:
+ type: string
+ description: The unique identifier of the Entra user associated with the device for which policy is applied. Read-Only.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Contains properties for device run state of the hardware configuration
+ microsoft.graph.hardwareConfigurationRunSummary:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwareConfigurationRunSummary
+ type: object
+ properties:
+ errorDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configuration state is error
+ format: int32
+ errorUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configuration state is error
+ format: int32
+ failedDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configuration found an issue
+ format: int32
+ failedUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configuration found an issue
+ format: int32
+ lastRunDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: Last run time for the configuration across all devices
+ format: date-time
+ nullable: true
+ notApplicableDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configuration state is not applicable
+ format: int32
+ notApplicableUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configuration state is not applicable
+ format: int32
+ pendingDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configuration is in pending state
+ format: int32
+ pendingUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configuration is in pending state
+ format: int32
+ successfulDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configured without any issue
+ format: int32
+ successfulUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configured without any issue
+ format: int32
+ unknownDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of devices for which hardware configuration state is unknown
+ format: int32
+ unknownUserCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Number of users for which hardware configuration state is unknown
+ format: int32
+ additionalProperties:
+ type: object
+ description: Contains properties for the run summary of a hardware configuration script.
+ microsoft.graph.hardwareConfigurationUserState:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: hardwareConfigurationUserState
+ type: object
+ properties:
+ errorDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Error device count for specific user.
+ format: int32
+ failedDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Failed device count for specific user.
+ format: int32
+ lastStateUpdateDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: Last timestamp when the hardware configuration executed
+ format: date-time
+ notApplicableDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Not applicable device count for specific user.
+ format: int32
+ pendingDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Pending device count for specific user.
+ format: int32
+ successfulDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Success device count for specific user.
+ format: int32
+ unknownDeviceCount:
+ maximum: 2147483647
+ minimum: -2147483648
+ type: integer
+ description: Unknown device count for specific user.
+ format: int32
+ upn:
+ type: string
+ description: User Principal Name (UPN).
+ nullable: true
+ userEmail:
+ type: string
+ description: User Email address.
+ nullable: true
+ userName:
+ type: string
+ description: User name
+ nullable: true
+ additionalProperties:
+ type: object
+ description: Contains properties for User state of the hardware configuration
microsoft.graph.importedDeviceIdentityType:
title: importedDeviceIdentityType
enum:
@@ -64765,12 +65453,15 @@ components:
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
+ description: 'The date and time when the bulk action 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.'
format: date-time
nullable: true
displayName:
type: string
+ description: Name of the bulk action.
scheduledDuringMaintenanceWindow:
type: boolean
+ description: 'Indicates whether the bulk actions can be initiated during maintenance window. When true, bulk action will use maintenance window to schedule action, When false means bulk action will not use the maintenance window. Default value is false.'
nullable: true
additionalProperties:
type: object
@@ -65483,6 +66174,29 @@ components:
additionalProperties:
type: object
description: Enrollment status screen setting
+ microsoft.graph.outOfBoxExperienceSetting:
+ title: outOfBoxExperienceSetting
+ type: object
+ properties:
+ deviceUsageType:
+ $ref: '#/components/schemas/microsoft.graph.windowsDeviceUsageType'
+ escapeLinkHidden:
+ type: boolean
+ description: 'When TRUE, the link that allows user to start over with a different account on company sign-in is hidden. When false, the link that allows user to start over with a different account on company sign-in is available. Default value is FALSE.'
+ eulaHidden:
+ type: boolean
+ description: 'When TRUE, EULA is hidden to the end user during OOBE. When FALSE, EULA is shown to the end user during OOBE. Default value is FALSE.'
+ keyboardSelectionPageSkipped:
+ type: boolean
+ description: 'When TRUE, the keyboard selection page is hidden to the end user during OOBE if Language and Region are set. When FALSE, the keyboard selection page is skipped during OOBE.'
+ privacySettingsHidden:
+ type: boolean
+ description: 'When TRUE, privacy settings is hidden to the end user during OOBE. When FALSE, privacy settings is shown to the end user during OOBE. Default value is FALSE.'
+ userType:
+ $ref: '#/components/schemas/microsoft.graph.windowsUserType'
+ additionalProperties:
+ type: object
+ description: 'The Windows Autopilot Deployment Profile settings used by the device for the out-of-box experience. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported.'
microsoft.graph.outOfBoxExperienceSettings:
title: outOfBoxExperienceSettings
type: object
@@ -65505,7 +66219,7 @@ components:
$ref: '#/components/schemas/microsoft.graph.windowsUserType'
additionalProperties:
type: object
- description: Out of box experience setting
+ description: 'The Windows Autopilot Deployment Profile settings used by the Autopilot device for out-of-box experience. Supports: $select, $top, $skip. $Search, $orderBy and $filter are not supported. Read-Only. Starting from May 2024 this property will no longer be supported and will be marked as deprecated. Use outOfBoxExperienceSetting instead.'
microsoft.graph.windowsAutopilotDeploymentProfileAssignment:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -68127,7 +68841,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -69075,6 +69789,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -69158,6 +69919,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -71165,26 +71932,31 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of Cloud PCs where the action failed.
format: int32
inProgressCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of Cloud PCs where the action is in progress.
format: int32
notSupportedCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of Cloud PCs where the action isn't supported.
format: int32
pendingCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of Cloud PCs where the action is pending.
format: int32
successfulCount:
maximum: 2147483647
minimum: -2147483648
type: integer
+ description: The number of Cloud PCs where the action is successful.
format: int32
additionalProperties:
type: object
@@ -75313,6 +76085,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -76518,7 +77334,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -76527,19 +77343,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -76547,19 +77363,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -76567,12 +77383,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -76589,13 +77405,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -77848,11 +78664,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -79890,6 +80706,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -87460,6 +88278,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
@@ -89050,6 +89869,12 @@ components:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummaryCollectionResponse'
+ microsoft.graph.deviceConfigurationProfileCollectionResponse:
+ description: Retrieved collection
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/microsoft.graph.deviceConfigurationProfileCollectionResponse'
microsoft.graph.deviceConfigurationCollectionResponse:
description: Retrieved collection
content:
diff --git a/openApiDocs/beta/Devices.CorporateManagement.yml b/openApiDocs/beta/Devices.CorporateManagement.yml
index 87e06b5789..42959ed979 100644
--- a/openApiDocs/beta/Devices.CorporateManagement.yml
+++ b/openApiDocs/beta/Devices.CorporateManagement.yml
@@ -2018,7 +2018,7 @@ paths:
tags:
- deviceAppManagement.iosLobAppProvisioningConfiguration
summary: Get assignments from deviceAppManagement
- description: 'The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.'
+ description: The associated group assignments for IosLobAppProvisioningConfiguration.
operationId: deviceAppManagement.iosLobAppProvisioningConfiguration_ListAssignment
parameters:
- name: iosLobAppProvisioningConfiguration-id
@@ -2109,7 +2109,7 @@ paths:
tags:
- deviceAppManagement.iosLobAppProvisioningConfiguration
summary: Get assignments from deviceAppManagement
- description: 'The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.'
+ description: The associated group assignments for IosLobAppProvisioningConfiguration.
operationId: deviceAppManagement.iosLobAppProvisioningConfiguration_GetAssignment
parameters:
- name: iosLobAppProvisioningConfiguration-id
@@ -10482,7 +10482,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidGraphFPreWorkApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -10573,7 +10573,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidGraphFPreWorkApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -12046,7 +12046,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -12137,7 +12137,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -12706,7 +12706,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidManagedStoreApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -12797,7 +12797,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidManagedStoreApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -13366,7 +13366,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidStoreApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -13457,7 +13457,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsAndroidStoreApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -14965,7 +14965,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -15056,7 +15056,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -15625,7 +15625,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosStoreApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -15716,7 +15716,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosStoreApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -16525,7 +16525,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosVppApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -16616,7 +16616,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsIosVppApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -18089,7 +18089,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSDmgApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -18180,7 +18180,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSDmgApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -19653,7 +19653,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -19744,7 +19744,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -21217,7 +21217,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSPkgApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -21308,7 +21308,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMacOSPkgApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -22781,7 +22781,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedAndroidLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -22872,7 +22872,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedAndroidLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -24345,7 +24345,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedIOSLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -24436,7 +24436,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedIOSLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -25909,7 +25909,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedMobileLobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -26000,7 +26000,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsManagedMobileLobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -26809,7 +26809,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMicrosoftStoreGraphFPreBusinessApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -26900,7 +26900,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsMicrosoftStoreGraphFPreBusinessApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -28408,7 +28408,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWin32LobApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -28499,7 +28499,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWin32LobApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -29972,7 +29972,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsAppX_ListRelationship
parameters:
- name: mobileApp-id
@@ -30063,7 +30063,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsAppX_GetRelationship
parameters:
- name: mobileApp-id
@@ -31536,7 +31536,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsMobileMSI_ListRelationship
parameters:
- name: mobileApp-id
@@ -31627,7 +31627,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsMobileMSI_GetRelationship
parameters:
- name: mobileApp-id
@@ -32196,7 +32196,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsStoreApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -32287,7 +32287,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsStoreApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -34000,7 +34000,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsUniversalAppX_ListRelationship
parameters:
- name: mobileApp-id
@@ -34091,7 +34091,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsUniversalAppX_GetRelationship
parameters:
- name: mobileApp-id
@@ -34660,7 +34660,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsWebApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -34751,7 +34751,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWindowsWebApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -35320,7 +35320,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWinGetApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -35411,7 +35411,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileAppAsWinGetApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -35560,7 +35560,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileApp_ListRelationship
parameters:
- name: mobileApp-id
@@ -35651,7 +35651,7 @@ paths:
tags:
- deviceAppManagement.mobileApp
summary: Get relationships from deviceAppManagement
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
operationId: deviceAppManagement.mobileApp_GetRelationship
parameters:
- name: mobileApp-id
@@ -48687,7 +48687,7 @@ components:
expirationDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Optional profile expiration date and time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default.'
+ description: Optional profile expiration date and time.
format: date-time
nullable: true
lastModifiedDateTime:
@@ -48718,7 +48718,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment'
- description: 'The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.'
+ description: The associated group assignments for IosLobAppProvisioningConfiguration.
x-ms-navigationProperty: true
deviceStatuses:
type: array
@@ -49606,14 +49606,14 @@ components:
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: The date and time the app was created.
+ description: The date and time the app was created. This property is read-only.
format: date-time
readOnly: true
dependentAppCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: The total number of dependencies the child app has.
+ description: The total number of dependencies the child app has. This property is read-only.
format: int32
readOnly: true
description:
@@ -49634,7 +49634,7 @@ components:
nullable: true
isAssigned:
type: boolean
- description: The value indicating whether the app is assigned to at least one group.
+ description: The value indicating whether the app is assigned to at least one group. This property is read-only.
readOnly: true
isFeatured:
type: boolean
@@ -49644,7 +49644,7 @@ components:
lastModifiedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: The date and time the app was last modified.
+ description: The date and time the app was last modified. This property is read-only.
format: date-time
readOnly: true
notes:
@@ -49689,7 +49689,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: The upload state.
+ description: 'The upload state. Possible values are: 0 - Not Ready, 1 - Ready, 2 - Processing. This property is read-only.'
format: int32
readOnly: true
assignments:
@@ -49708,7 +49708,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.mobileAppRelationship'
- description: List of relationships for this mobile app.
+ description: The set of direct relationships for this app.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -68752,11 +68752,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Devices.ServiceAnnouncement.yml b/openApiDocs/beta/Devices.ServiceAnnouncement.yml
index 4f5677210b..4a9d632b6e 100644
--- a/openApiDocs/beta/Devices.ServiceAnnouncement.yml
+++ b/openApiDocs/beta/Devices.ServiceAnnouncement.yml
@@ -5635,11 +5635,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Files.yml b/openApiDocs/beta/Files.yml
index d71ba84ee9..9ae01c1e8c 100644
--- a/openApiDocs/beta/Files.yml
+++ b/openApiDocs/beta/Files.yml
@@ -8381,11 +8381,11 @@ paths:
patch:
tags:
- drives.driveItem
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: drive.item_UpdateRetentionLabel
parameters:
- name: drive-id
@@ -21739,11 +21739,11 @@ paths:
patch:
tags:
- drives.driveItem
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: drive.root_UpdateRetentionLabel
parameters:
- name: drive-id
@@ -31121,11 +31121,11 @@ paths:
patch:
tags:
- groups.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: group.drive.item_UpdateRetentionLabel
parameters:
- name: group-id
@@ -44135,11 +44135,11 @@ paths:
patch:
tags:
- groups.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: group.drive.root_UpdateRetentionLabel
parameters:
- name: group-id
@@ -63585,11 +63585,11 @@ paths:
patch:
tags:
- users.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: user.drive.item_UpdateRetentionLabel
parameters:
- name: user-id
@@ -76599,11 +76599,11 @@ paths:
patch:
tags:
- users.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: user.drive.root_UpdateRetentionLabel
parameters:
- name: user-id
@@ -78773,6 +78773,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -82381,7 +82387,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -83178,6 +83184,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -83261,6 +83314,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -83893,7 +83952,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -85745,11 +85804,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -89035,6 +89094,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -91917,7 +92020,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -91926,19 +92029,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -91946,19 +92049,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -91966,12 +92069,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -91988,13 +92091,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -93055,6 +93158,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.recycleBinItem:
allOf:
@@ -93526,11 +93631,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -102693,6 +102798,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Groups.yml b/openApiDocs/beta/Groups.yml
index 2307e57379..d3ac4ff1d9 100644
--- a/openApiDocs/beta/Groups.yml
+++ b/openApiDocs/beta/Groups.yml
@@ -407,11 +407,11 @@ paths:
post:
tags:
- groups.group
- summary: Upsert group
- description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see thethe Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. Note: To create a team, first create a group then add a team to it, see create team."
+ summary: Create group
+ description: 'Create a new group as specified in the request body. You can create one of the following groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. Note: To create a team, first create a group then add a team to it, see create team.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0
operationId: group_CreateGroup
requestBody:
description: New entity
@@ -483,7 +483,7 @@ paths:
tags:
- groups.group
summary: Upsert group
- description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see thethe Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. Note: To create a team, first create a group then add a team to it, see create team."
+ description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see thethe Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option."
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0
@@ -9341,11 +9341,11 @@ paths:
post:
tags:
- groups.conversation
- summary: Create conversation
- description: Create a new conversation by including a thread and a post. Use reply thread or reply post to further post to that conversation.
+ summary: Create openTypeExtension
+ description: 'Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/group-post-conversations?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0
operationId: group_CreateConversation
parameters:
- name: group-id
@@ -40335,7 +40335,7 @@ paths:
tags:
- groups.group
summary: Upsert group
- description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see thethe Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. Note: To create a team, first create a group then add a team to it, see create team."
+ description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see thethe Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option."
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0
@@ -42425,7 +42425,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -43447,6 +43447,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -43832,7 +43838,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -43841,19 +43847,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -43861,19 +43867,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -43881,12 +43887,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -43903,13 +43909,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -48825,6 +48831,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -48908,6 +48961,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -49540,7 +49599,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -52342,11 +52401,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -53435,11 +53494,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -54811,6 +54870,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -58536,6 +58639,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.recycleBinItem:
allOf:
@@ -63180,6 +63285,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Identity.DirectoryManagement.yml b/openApiDocs/beta/Identity.DirectoryManagement.yml
index 703c713353..ca0dbee258 100644
--- a/openApiDocs/beta/Identity.DirectoryManagement.yml
+++ b/openApiDocs/beta/Identity.DirectoryManagement.yml
@@ -28189,7 +28189,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -29583,6 +29583,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -34243,6 +34249,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -34326,6 +34379,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -34958,7 +35017,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -35587,11 +35646,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -35712,11 +35771,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -41187,6 +41246,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -43824,7 +43927,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -43833,19 +43936,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -43853,19 +43956,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -43873,12 +43976,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -43895,13 +43998,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -47122,6 +47225,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -56621,6 +56726,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Identity.Governance.yml b/openApiDocs/beta/Identity.Governance.yml
index f07d48df57..e3302f9b9d 100644
--- a/openApiDocs/beta/Identity.Governance.yml
+++ b/openApiDocs/beta/Identity.Governance.yml
@@ -40419,11 +40419,11 @@ paths:
delete:
tags:
- identityGovernance.entitlementManagement
- summary: Delete accessPackageAssignmentWorkflowExtension
- description: "Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:\n1. First retrieve the accessPackageCatalogId by calling the Get accessPackageAssignmentPolicies operation and appending ?$expand=accessPackage($expand=accessPackageCatalog) to the query. For example, https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies?$expand=accessPackage($expand=accessPackageCatalog).\n2. Use the access package catalog ID and retrieve the ID of the accessPackageCustomWorkflowExtension object that you want to delete by running the List accessPackageCustomWorkflowExtensions operation.\n3. Call the Update accessPackageAssignmentPolicy operation to remove the custom workflow extension object from the policy. For an example, see Example 3: Remove the customExtensionStageSettings from a policy."
+ summary: Delete customAccessPackageWorkflowExtension
+ description: "Delete a customAccessPackageWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:\n1. First retrieve the accessPackageCatalogId by calling the Get accessPackageAssignmentPolicies operation and appending ?$expand=accessPackage($expand=accessPackageCatalog) to the query. For example, https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies?$expand=accessPackage($expand=accessPackageCatalog).\n2. Use the access package catalog ID and retrieve the ID of the customAccessPackageWorkflowExtension object that you want to delete by running the LIST customAccessPackageWorkflowExtensions operation.\n3. Call the Update accessPackageAssignmentPolicy operation to remove the custom workflow extension object from the policy. For an example, see Example 2: Remove the customExtensionHandlers and verifiableCredentialSettings from a policy."
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/customaccesspackageworkflowextension-delete?view=graph-rest-1.0
operationId: identityGovernance.entitlementManagement.accessPackageCatalog_DeleteCustomAccessPackageWorkflowExtension
parameters:
- name: accessPackageCatalog-id
@@ -77205,11 +77205,11 @@ paths:
get:
tags:
- identityGovernance.termsOfUseContainer
- summary: Get agreement
- description: Retrieve the properties and relationships of an agreement object.
+ summary: List files (terms of use agreement files)
+ description: Retrieve all files related to an agreement. This includes the default file and all localized files.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/agreement-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/agreement-list-files?view=graph-rest-1.0
operationId: identityGovernance.termsGraphOPreUse_GetAgreement
parameters:
- name: agreement-id
@@ -114753,11 +114753,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Identity.Partner.yml b/openApiDocs/beta/Identity.Partner.yml
index 98a9a906a4..821d3c83fc 100644
--- a/openApiDocs/beta/Identity.Partner.yml
+++ b/openApiDocs/beta/Identity.Partner.yml
@@ -1665,6 +1665,7 @@ components:
enum:
- delegatedAdminAccessAssignmentUpdate
- unknownFutureValue
+ - delegatedAdminRelationshipUpdate
type: string
microsoft.graph.longRunningOperationStatus:
title: longRunningOperationStatus
diff --git a/openApiDocs/beta/Identity.SignIns.yml b/openApiDocs/beta/Identity.SignIns.yml
index f97a3c4c7c..215ea216b4 100644
--- a/openApiDocs/beta/Identity.SignIns.yml
+++ b/openApiDocs/beta/Identity.SignIns.yml
@@ -8948,11 +8948,11 @@ paths:
get:
tags:
- identity.conditionalAccessRoot
- summary: Get namedLocation
- description: Retrieve the properties and relationships of a namedLocation object.
+ summary: Get countryNamedLocation
+ description: Retrieve the properties and relationships of a countryNamedLocation object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/namedlocation-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/countrynamedlocation-get?view=graph-rest-1.0
operationId: identity.conditionalAccess_GetNamedLocation
parameters:
- name: namedLocation-id
@@ -8996,11 +8996,11 @@ paths:
patch:
tags:
- identity.conditionalAccessRoot
- summary: Update countryNamedLocation
- description: Update the properties of a countryNamedLocation object.
+ summary: Update ipNamedlocation
+ description: Update the properties of an ipNamedLocation object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/countrynamedlocation-update?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/ipnamedlocation-update?view=graph-rest-1.0
operationId: identity.conditionalAccess_UpdateNamedLocation
parameters:
- name: namedLocation-id
@@ -9031,11 +9031,11 @@ paths:
delete:
tags:
- identity.conditionalAccessRoot
- summary: Delete countryNamedLocation
- description: Delete a countryNamedLocation object.
+ summary: Delete ipNamedLocation
+ description: Delete an ipNamedLocation object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/countrynamedlocation-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/ipnamedlocation-delete?view=graph-rest-1.0
operationId: identity.conditionalAccess_DeleteNamedLocation
parameters:
- name: namedLocation-id
@@ -9569,11 +9569,11 @@ paths:
get:
tags:
- identity.customAuthenticationExtension
- summary: Get customAuthenticationExtension
- description: Read the properties and relationships of a customAuthenticationExtension object.
+ summary: Get authenticationEventListener
+ description: Read the properties and relationships of an authenticationEventListener object. The @odata.type property in the response object indicates the type of the authenticationEventListener object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/customauthenticationextension-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/authenticationeventlistener-get?view=graph-rest-1.0
operationId: identity_GetCustomAuthenticationExtension
parameters:
- name: customAuthenticationExtension-id
@@ -10583,11 +10583,11 @@ paths:
get:
tags:
- identityProtection.riskDetection
- summary: List riskDetection
- description: Retrieve the properties of a collection of riskDetection objects.
+ summary: Get riskDetection
+ description: Retrieve the properties of a riskDetection object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/riskdetection-list?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/riskdetection-get?view=graph-rest-1.0
operationId: identityProtection_GetRiskDetection
parameters:
- name: riskDetection-id
@@ -11205,11 +11205,11 @@ paths:
get:
tags:
- identityProtection.riskyUser
- summary: List riskyUsers
- description: Retrieve the properties and relationships of a collection of riskyUser objects.
+ summary: Get riskyUser
+ description: Retrieve the properties and relationships of a riskyUser object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/riskyusers-list?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/riskyusers-get?view=graph-rest-1.0
operationId: identityProtection_ListRiskyUser
parameters:
- $ref: '#/components/parameters/top'
@@ -19854,11 +19854,11 @@ paths:
get:
tags:
- policies.federatedTokenValidationPolicy
- summary: Get federatedTokenValidationPolicy
- description: Read the properties and relationships of a federatedTokenValidationPolicy object.
+ summary: List federatedTokenValidationPolicy
+ description: Get a list of the federatedTokenValidationPolicy objects and their properties.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/federatedtokenvalidationpolicy-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/policyroot-list-federatedtokenvalidationpolicy?view=graph-rest-1.0
operationId: policy_GetFederatedTokenValidationPolicy
parameters:
- name: $select
@@ -32582,6 +32582,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -34185,7 +34191,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -37901,6 +37907,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -37984,6 +38037,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -38616,7 +38675,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -39922,11 +39981,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -44596,6 +44655,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -47458,7 +47561,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -47467,19 +47570,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -47487,19 +47590,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -47507,12 +47610,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -47529,13 +47632,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -48952,11 +49055,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -50950,6 +51053,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -59641,6 +59746,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Mail.yml b/openApiDocs/beta/Mail.yml
index 0e4955a4ad..6e3915ccb3 100644
--- a/openApiDocs/beta/Mail.yml
+++ b/openApiDocs/beta/Mail.yml
@@ -4593,7 +4593,7 @@ paths:
description: The messages in a mailbox or folder. Read-only. Nullable.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/user-list-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0
operationId: user_ListMessage
parameters:
- name: user-id
@@ -4757,11 +4757,11 @@ paths:
patch:
tags:
- users.message
- summary: Update eventMessage
- description: Update the properties of an eventMessage object.
+ summary: Update message
+ description: Update the properties of a message object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/eventmessage-update?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/message-update?view=graph-rest-1.0
operationId: user_UpdateMessage
parameters:
- name: user-id
@@ -4800,11 +4800,11 @@ paths:
delete:
tags:
- users.message
- summary: Delete eventMessage
- description: Delete eventMessage.
+ summary: Delete message
+ description: 'Delete a message in the specified user''s mailbox, or delete a relationship of the message. For example, you can delete a specific @-mention of the specified user in the message.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/eventmessage-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/message-delete?view=graph-rest-1.0
operationId: user_DeleteMessage
parameters:
- name: user-id
@@ -4842,7 +4842,7 @@ paths:
summary: Get media content for the navigation property messages from users
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/user-list-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0
operationId: user_GetMessagesContent
parameters:
- name: user-id
diff --git a/openApiDocs/beta/Notes.yml b/openApiDocs/beta/Notes.yml
index b5c2e1a09b..0d125b0872 100644
--- a/openApiDocs/beta/Notes.yml
+++ b/openApiDocs/beta/Notes.yml
@@ -20209,11 +20209,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Planner.yml b/openApiDocs/beta/Planner.yml
index 53c517a4d0..3a519feba7 100644
--- a/openApiDocs/beta/Planner.yml
+++ b/openApiDocs/beta/Planner.yml
@@ -4110,7 +4110,7 @@ paths:
tags:
- planner.plannerPlan
summary: Create plannerPlan
- description: Create a new plannerPlan.
+ description: Create a new plannerPlan object.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/planner-post-plans?view=graph-rest-1.0
@@ -12658,7 +12658,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -12667,19 +12667,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -12687,19 +12687,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -12707,12 +12707,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -12729,13 +12729,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -13432,11 +13432,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -13521,6 +13521,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Reports.yml b/openApiDocs/beta/Reports.yml
index 7e3ade6893..007f5296ab 100644
--- a/openApiDocs/beta/Reports.yml
+++ b/openApiDocs/beta/Reports.yml
@@ -14573,7 +14573,7 @@ components:
properties:
content:
type: string
- description: The http content that has the data
+ description: Report content; details vary by report type.
format: base64url
nullable: true
additionalProperties:
@@ -16105,11 +16105,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -17610,11 +17610,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Search.yml b/openApiDocs/beta/Search.yml
index f7af7ba937..9dbd649012 100644
--- a/openApiDocs/beta/Search.yml
+++ b/openApiDocs/beta/Search.yml
@@ -2240,11 +2240,11 @@ paths:
get:
tags:
- external.industryDataRoot
- summary: List industryDataConnectors
- description: Get the industryDataConnector resources from the dataConnector navigation property.
+ summary: List azureDataLakeConnectors
+ description: Get a list of the azureDataLakeConnector objects and their properties.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/industrydata-industrydataconnector-list?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/industrydata-azuredatalakeconnector-list?view=graph-rest-1.0
operationId: external.industryData_ListDataConnector
parameters:
- $ref: '#/components/parameters/top'
@@ -2404,11 +2404,11 @@ paths:
delete:
tags:
- external.industryDataRoot
- summary: Delete azureDataLakeConnector
- description: Delete an azureDataLakeConnector object.
+ summary: Delete industryDataConnector
+ description: Delete an industryDataConnector object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/industrydata-azuredatalakeconnector-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/industrydata-industrydataconnector-delete?view=graph-rest-1.0
operationId: external.industryData_DeleteDataConnector
parameters:
- name: industryDataConnector-id
@@ -2574,11 +2574,11 @@ paths:
post:
tags:
- external.industryDataRoot
- summary: Create inboundFlow
- description: 'Create a new inboundFlow object. The following prerequisite resources are required when you create an inboundFlow:'
+ summary: Create inboundFileFlow
+ description: 'Create a new inboundFileFlow object. The following prerequisite resources are required when you create an inboundFileFlow:'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/industrydata-inboundflow-post?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/industrydata-inboundfileflow-post?view=graph-rest-1.0
operationId: external.industryData_CreateInboundFlow
requestBody:
description: New navigation property
@@ -2649,11 +2649,11 @@ paths:
patch:
tags:
- external.industryDataRoot
- summary: Update inboundFileFlow
- description: Update the properties of an inboundFileFlow object.
+ summary: Update inboundFlow
+ description: Update the properties of an inboundFlow object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/industrydata-inboundfileflow-update?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/industrydata-inboundflow-update?view=graph-rest-1.0
operationId: external.industryData_UpdateInboundFlow
parameters:
- name: inboundFlow-id
@@ -2684,11 +2684,11 @@ paths:
delete:
tags:
- external.industryDataRoot
- summary: Delete inboundFlow
- description: Delete an inboundFlow object.
+ summary: Delete inboundFileFlow
+ description: Delete an inboundFileFlow object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/industrydata-inboundflow-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/industrydata-inboundfileflow-delete?view=graph-rest-1.0
operationId: external.industryData_DeleteInboundFlow
parameters:
- name: inboundFlow-id
diff --git a/openApiDocs/beta/Sites.yml b/openApiDocs/beta/Sites.yml
index a4f4d631ec..23600e2a9c 100644
--- a/openApiDocs/beta/Sites.yml
+++ b/openApiDocs/beta/Sites.yml
@@ -49497,11 +49497,11 @@ paths:
get:
tags:
- sites.site
- summary: List sites
- description: "List all available [sites][] in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a [$search][] query against the /sites collection to find sites matching given keywords.\nIf you want to list all sites across all geographies, refer to getAllSites][]. For more guidance about building applications that use site discovery for scanning purposes, see [Best practices for discovering files and detecting changes at scale."
+ summary: Search for sites
+ description: 'Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/site-list?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0
operationId: site_ListSite
parameters:
- $ref: '#/components/parameters/top'
@@ -86535,6 +86535,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.mailFolder'
description: The user's mail folders. Read-only. Nullable.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the user.
+ x-ms-navigationProperty: true
managedAppRegistrations:
type: array
items:
@@ -91299,7 +91305,7 @@ components:
nullable: true
isRooted:
type: boolean
- description: true if device is rooted; false if device is jail-broken. This can only be updated by Intune.
+ description: true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
nullable: true
kind:
type: string
@@ -92067,6 +92073,53 @@ components:
x-ms-navigationProperty: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogCollectionRequest:
+ allOf:
+ - $ref: '#/components/schemas/microsoft.graph.entity'
+ - title: managedAppLogCollectionRequest
+ type: object
+ properties:
+ completedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was completed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ nullable: true
+ managedAppRegistrationId:
+ type: string
+ description: The unique identifier of the app instance for which diagnostic was collected.
+ nullable: true
+ requestedBy:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection.
+ nullable: true
+ requestedByUserPrincipalName:
+ type: string
+ description: The user principal name associated with the request for the managed application log collection. Read-only.
+ nullable: true
+ requestedDateTime:
+ pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
+ type: string
+ description: 'DateTime of when the log upload request was received. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: ''2014-01-01T00:00:00Z''. Returned by default. Read-only.'
+ format: date-time
+ status:
+ type: string
+ description: 'Indicates the status for the app log collection request - pending, completed or failed. Default is pending.'
+ nullable: true
+ uploadedLogs:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUpload'
+ description: 'The collection of log upload results as reported by each component on the device. Such components can be the application itself, the Mobile Application Management (MAM) SDK, and other on-device components that are requested to upload diagnostic logs.'
+ userLogUploadConsent:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogUploadConsent'
+ version:
+ type: string
+ description: Version of the entity.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: The Managed App log collection response
microsoft.graph.managedAppRegistration:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
@@ -92150,6 +92203,12 @@ components:
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
description: Zero or more policies admin intended for the app as of now.
x-ms-navigationProperty: true
+ managedAppLogCollectionRequests:
+ type: array
+ items:
+ $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest'
+ description: Zero or more log collection requests triggered for the app.
+ x-ms-navigationProperty: true
operations:
type: array
items:
@@ -92782,7 +92841,7 @@ components:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest'
- description: Indicates collection of App Log Upload Request.
+ description: The collection property of AppLogUploadRequest.
x-ms-navigationProperty: true
additionalProperties:
type: object
@@ -93957,6 +94016,8 @@ components:
- article
- home
- unknownFutureValue
+ - newsLink
+ - videoNewsLink
type: string
microsoft.graph.sharePointIdentitySet:
allOf:
@@ -94263,11 +94324,11 @@ components:
properties:
key:
type: string
- description: Contains the name of the field that a value is associated with.
+ description: Key.
nullable: true
value:
type: string
- description: Contains the corresponding value for the specified key.
+ description: Value.
nullable: true
additionalProperties:
type: object
@@ -95003,11 +95064,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
@@ -98107,6 +98168,50 @@ components:
nullable: true
additionalProperties:
type: object
+ microsoft.graph.managedAppLogUpload:
+ title: managedAppLogUpload
+ type: object
+ properties:
+ managedAppComponent:
+ type: string
+ description: The Mobile Application Management (MAM) Logs Uploading Component.
+ nullable: true
+ managedAppComponentDescription:
+ type: string
+ description: 'The Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs. Read-only.'
+ nullable: true
+ referenceId:
+ type: string
+ description: A provider-specific reference id for the uploaded logs.
+ nullable: true
+ additionalProperties:
+ type: object
+ description: 'A `managedAppLogUpload` represents the log upload result for a given Mobile Application Management (MAM) Logs Uploading Component. Such components can be the application itself, the MAM SDK, and other on-device components that are capable of uploading diagnostic logs.'
+ microsoft.graph.managedAppLogUploadConsent:
+ title: managedAppLogUploadConsent
+ enum:
+ - unknown
+ - declined
+ - accepted
+ - unknownFutureValue
+ type: string
+ description: Represents the current consent status of the associated `managedAppLogCollectionRequest`.
+ x-ms-enum:
+ name: managedAppLogUploadConsent
+ modelAsString: false
+ values:
+ - value: unknown
+ description: Default. Indicates app log consent state is 'Unknown'. This state is automatically assigned at request creation time and is updated when the log collection completes.
+ name: unknown
+ - value: declined
+ description: 'The User has Declined the Log Collection Request. The Log collection and uploads will not be initiated/triggered, and the log collection request will be abandoned.'
+ name: declined
+ - value: accepted
+ description: The User has Accepted the Log Collection Request. The log collection and upload will be initiated.
+ name: accepted
+ - value: unknownFutureValue
+ description: Evolvable enumeration sentinel value. Do not use.
+ name: unknownFutureValue
microsoft.graph.mobileAppIdentifier:
title: mobileAppIdentifier
type: object
@@ -100796,7 +100901,7 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Number of checklist items with value set to false, representing incomplete items.'
+ description: 'The number of checklist items with value set to false, representing incomplete items.'
format: int32
nullable: true
appliedCategories:
@@ -100805,19 +100910,19 @@ components:
$ref: '#/components/schemas/microsoft.graph.plannerArchivalInfo'
assigneePriority:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'A hint that is used to order items of this type in a list view. For more information, see Using order hints in Planner.'
nullable: true
assignments:
$ref: '#/components/schemas/microsoft.graph.plannerAssignments'
bucketId:
type: string
- description: Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service.
+ description: Bucket ID to which the task belongs. The bucket needs to be in the same plan as the task. The value of the bucketId property is 28 characters long and case-sensitive. Format validation is done on the service.
nullable: true
checklistItemCount:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: Number of checklist items that are present on the task.
+ description: The number of checklist items that are present on the task.
format: int32
nullable: true
completedBy:
@@ -100825,19 +100930,19 @@ components:
completedDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the ''percentComplete'' of the task is set to ''100''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
conversationThreadId:
type: string
- description: Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
+ description: The thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group.
nullable: true
createdBy:
$ref: '#/components/schemas/microsoft.graph.identitySet'
createdDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'Read-only. The date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
creationSource:
@@ -100845,12 +100950,12 @@ components:
dueDateTime:
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
type: string
- description: 'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
+ description: 'The date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z'
format: date-time
nullable: true
hasDescription:
type: boolean
- description: Read-only. Value is true if the details object of the task has a nonempty description and false otherwise.
+ description: 'Read-only. This value is true if the details object of the task has a nonempty description. Otherwise,false.'
nullable: true
isArchived:
type: boolean
@@ -100867,13 +100972,13 @@ components:
nullable: true
orderHint:
type: string
- description: Hint used to order items of this type in a list view. The format is defined as outlined here.
+ description: 'The hint used to order items of this type in a list view. For more information, see Using order hints in Plannern.'
nullable: true
percentComplete:
maximum: 2147483647
minimum: -2147483648
type: integer
- description: 'Percentage of task completion. When set to 100, the task is considered completed.'
+ description: 'The percentage of task completion. When set to 100, the task is completed.'
format: int32
nullable: true
planId:
@@ -111352,6 +111457,7 @@ components:
properties:
isApprovalRequired:
type: boolean
+ description: 'Specifies whether approval is required to complete the plannerTask. When this property is set to true, the task can only be marked complete if an approval is created for the task and approved.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Teams.yml b/openApiDocs/beta/Teams.yml
index 630d61cabe..6c8d3834f9 100644
--- a/openApiDocs/beta/Teams.yml
+++ b/openApiDocs/beta/Teams.yml
@@ -2620,11 +2620,11 @@ paths:
post:
tags:
- chats.chatMessage
- summary: Send message in a chat
- description: Send a new chatMessage in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before creating a chat message.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: chat_CreateMessage
parameters:
- name: chat-id
@@ -7082,11 +7082,11 @@ paths:
post:
tags:
- groups.team
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: group.team.channel_CreateMessage
parameters:
- name: group-id
@@ -11964,11 +11964,11 @@ paths:
post:
tags:
- groups.team
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: group.team.primaryChannel_CreateMessage
parameters:
- name: group-id
@@ -18959,11 +18959,11 @@ paths:
post:
tags:
- teams.channel
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: team.channel_CreateMessage
parameters:
- name: team-id
@@ -25242,11 +25242,11 @@ paths:
post:
tags:
- teams.channel
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: team.primaryChannel_CreateMessage
parameters:
- name: team-id
@@ -33687,11 +33687,11 @@ paths:
post:
tags:
- teamwork.deletedTeam
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: teamwork.deletedTeam.channel_CreateMessage
parameters:
- name: deletedTeam-id
@@ -38264,11 +38264,11 @@ paths:
get:
tags:
- teamwork.teamTemplate
- summary: List teamTemplates
- description: 'Get the list of teamTemplate objects that are available for a tenant. '
+ summary: List definitions
+ description: 'List the teamTemplateDefinition objects associated with a teamTemplate. '
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/teamwork-list-teamtemplates?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/teamtemplate-list-definitions?view=graph-rest-1.0
operationId: teamwork_ListTeamTemplate
parameters:
- $ref: '#/components/parameters/top'
@@ -39994,11 +39994,11 @@ paths:
post:
tags:
- teamwork.teamTemplate
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: teamwork.teamTemplate.definition.teamDefinition.channel_CreateMessage
parameters:
- name: teamTemplate-id
@@ -47317,11 +47317,11 @@ paths:
post:
tags:
- teamwork.teamTemplate
- summary: Send chatMessage in channel
- description: Send a new chatMessage in the specified channel.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/channel-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: teamwork.teamTemplate.definition.teamDefinition.primaryChannel_CreateMessage
parameters:
- name: teamTemplate-id
@@ -56709,11 +56709,11 @@ paths:
post:
tags:
- users.chat
- summary: Send message in a chat
- description: Send a new chatMessage in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before creating a chat message.
+ summary: Send chatMessage in a channel or a chat
+ description: Send a new chatMessage in the specified channel or a chat.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
operationId: user.chat_CreateMessage
parameters:
- name: user-id
@@ -63822,11 +63822,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Users.Actions.yml b/openApiDocs/beta/Users.Actions.yml
index 9cf8c684ab..048bfdac90 100644
--- a/openApiDocs/beta/Users.Actions.yml
+++ b/openApiDocs/beta/Users.Actions.yml
@@ -37026,11 +37026,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/Users.yml b/openApiDocs/beta/Users.yml
index 5bf7683eb6..f42124399f 100644
--- a/openApiDocs/beta/Users.yml
+++ b/openApiDocs/beta/Users.yml
@@ -28482,11 +28482,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/beta/WindowsUpdates.yml b/openApiDocs/beta/WindowsUpdates.yml
index ec51319843..60f9350610 100644
--- a/openApiDocs/beta/WindowsUpdates.yml
+++ b/openApiDocs/beta/WindowsUpdates.yml
@@ -6832,11 +6832,11 @@ paths:
get:
tags:
- admin.adminWindows
- summary: Get resourceConnection
- description: Read the properties and relationships of a resourceConnection object.
+ summary: Get operationalInsightsConnection
+ description: Read the properties and relationships of an operationalInsightsConnection object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-get?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/windowsupdates-operationalinsightsconnection-get?view=graph-rest-1.0
operationId: admin.window.update_GetResourceConnection
parameters:
- name: resourceConnection-id
@@ -7116,11 +7116,11 @@ paths:
delete:
tags:
- admin.adminWindows
- summary: Delete azureADDevice
- description: 'Delete an azureADDevice object. When a Microsoft Entra device is deleted, it is unregistered from the deployment service and automatically unenrolled from management by the service for all update categories, as well as removed from every deploymentAudience and updatableAssetGroup.'
+ summary: Delete updatableAsset
+ description: Delete an updatableAsset object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/windowsupdates-azureaddevice-delete?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/windowsupdates-updatableasset-delete?view=graph-rest-1.0
operationId: admin.window.update_DeleteUpdatableAsset
parameters:
- name: updatableAsset-id
@@ -9778,11 +9778,11 @@ paths:
patch:
tags:
- admin.adminWindows
- summary: Update contentApproval
- description: Update the properties of a contentApproval object.
+ summary: Update complianceChange
+ description: Update the properties of a complianceChange object.
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/windowsupdates-contentapproval-update?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-update?view=graph-rest-1.0
operationId: admin.window.update.updatePolicy_UpdateComplianceChange
parameters:
- name: updatePolicy-id
@@ -11126,11 +11126,11 @@ components:
properties:
displayName:
type: string
- description: The display name of the identity. This property is read-only.
+ description: 'The display name of the identity. The display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
nullable: true
id:
type: string
- description: The identifier of the identity. This property is read-only.
+ description: 'Unique identifier for the identity. When the unique identifier is unavailable, the displayName property is provided for the identity, but the id property isn''t included in the response.'
nullable: true
additionalProperties:
type: object
diff --git a/openApiDocs/v1.0/Calendar.yml b/openApiDocs/v1.0/Calendar.yml
index 8bde1d7710..e23c488691 100644
--- a/openApiDocs/v1.0/Calendar.yml
+++ b/openApiDocs/v1.0/Calendar.yml
@@ -22110,11 +22110,11 @@ paths:
post:
tags:
- users.event
- summary: Create multi-value extended property
- description: "Create one or more multi-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources are supported: See Extended properties overview for more information about when to use\nopen extensions or extended properties, and how to specify extended properties."
+ summary: Create single-value extended property
+ description: "Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources: See Extended properties overview for more information about when to use\nopen extensions or extended properties, and how to specify extended properties."
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/multivaluelegacyextendedproperty-post-multivalueextendedproperties?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/singlevaluelegacyextendedproperty-post-singlevalueextendedproperties?view=graph-rest-1.0
operationId: user_CreateEvent
parameters:
- name: user-id
diff --git a/openApiDocs/v1.0/Files.yml b/openApiDocs/v1.0/Files.yml
index a760ddd0e6..4175800c61 100644
--- a/openApiDocs/v1.0/Files.yml
+++ b/openApiDocs/v1.0/Files.yml
@@ -6753,11 +6753,11 @@ paths:
patch:
tags:
- drives.driveItem
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: drive.item_UpdateRetentionLabel
parameters:
- name: drive-id
@@ -18489,11 +18489,11 @@ paths:
patch:
tags:
- drives.driveItem
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: drive.root_UpdateRetentionLabel
parameters:
- name: drive-id
@@ -25769,11 +25769,11 @@ paths:
patch:
tags:
- groups.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: group.drive.item_UpdateRetentionLabel
parameters:
- name: group-id
@@ -36838,11 +36838,11 @@ paths:
patch:
tags:
- groups.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: group.drive.root_UpdateRetentionLabel
parameters:
- name: group-id
@@ -52672,11 +52672,11 @@ paths:
patch:
tags:
- users.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: user.drive.item_UpdateRetentionLabel
parameters:
- name: user-id
@@ -63741,11 +63741,11 @@ paths:
patch:
tags:
- users.drive
- summary: 'driveItem: setRetentionLabel'
- description: 'Apply (set) a retention label on a driveItem (files and folders). Retention labels don''t need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.'
+ summary: 'driveItem: lockOrUnlockRecord'
+ description: 'Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator''s perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/driveitem-setretentionlabel?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/driveitem-lockorunlockrecord?view=graph-rest-1.0
operationId: user.drive.root_UpdateRetentionLabel
parameters:
- name: user-id
diff --git a/openApiDocs/v1.0/Sites.yml b/openApiDocs/v1.0/Sites.yml
index a5f423bf97..ec76bb978c 100644
--- a/openApiDocs/v1.0/Sites.yml
+++ b/openApiDocs/v1.0/Sites.yml
@@ -4352,11 +4352,11 @@ paths:
get:
tags:
- groups.site
- summary: List operations on a list
- description: Get a list of rich long-running operations associated with a list.
+ summary: Get metadata for a list
+ description: 'Returns the metadata for a [list][].'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/list-list-operations?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/list-get?view=graph-rest-1.0
operationId: group.site_GetList
parameters:
- name: group-id
@@ -63931,11 +63931,11 @@ paths:
get:
tags:
- sites.site
- summary: List sites
- description: "List all available [sites][] in an organization. Specific filter criteria and query options are also supported and described below: In addition, you can use a [$search][] query against the /sites collection to find sites matching given keywords.\nIf you want to list all sites across all geographies, refer to getAllSites][]. For more guidance about building applications that use site discovery for scanning purposes, see [Best practices for discovering files and detecting changes at scale."
+ summary: Search for sites
+ description: 'Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results.'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/site-list?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0
operationId: site_ListSite
parameters:
- $ref: '#/components/parameters/top'
@@ -67313,11 +67313,11 @@ paths:
get:
tags:
- sites.list
- summary: List operations on a list
- description: Get a list of rich long-running operations associated with a list.
+ summary: Get metadata for a list
+ description: 'Returns the metadata for a [list][].'
externalDocs:
description: Find more info here
- url: https://learn.microsoft.com/graph/api/list-list-operations?view=graph-rest-1.0
+ url: https://learn.microsoft.com/graph/api/list-get?view=graph-rest-1.0
operationId: site_GetList
parameters:
- name: site-id
diff --git a/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md b/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md
+++ b/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md b/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md
+++ b/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md b/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md b/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md
index 4d49ee1974..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgBetaApplicationDelta Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaApplicationDelta
-```
-This example shows how to use the Get-MgBetaApplicationDelta Cmdlet.
-To learn about permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall).
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md b/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md
+++ b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md
index 435aa23f69..1d3e6ad807 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md
@@ -1,14 +1,11 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups"
+
```
This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
-### Example 2: Using the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentId $onPremisesAgentId -ExpandProperty "agentGroups"
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md
index 28f2ac66b9..82c5f03d3a 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md
@@ -1,14 +1,11 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agents,publishedResources"
+
```
This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
-### Example 2: Using the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentGroupId $onPremisesAgentGroupId -ExpandProperty "publishedResources,agents"
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md
index 521857ef78..2b98dd99d1 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md
@@ -1,14 +1,11 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
-### Example 2: Using the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId
+
```
This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md
index f24a6c2e07..7329c8404e 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md
@@ -1,14 +1,11 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
-### Example 2: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId
+
```
This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md
index 2205507033..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroupMember Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileConnectorGroupMember -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroupMember Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md
index c7430ca650..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorMemberOf Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfileConnectorMemberOf -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorMemberOf Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md
index 8f37cfdc21..34aa4b9891 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md
@@ -1,14 +1,11 @@
-### Example 1: Using the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -PublishedResourceId $publishedResourceId -ExpandProperty "agentGroups"
-```
-This example shows how to use the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
-### Example 2: Using the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups"
+
```
This example shows how to use the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md
+++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md
index da6a6395b6..bbb7e76f95 100644
--- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md
+++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md
@@ -1,7 +1,11 @@
-### Example 1: Using the Get-MgBetaServicePrincipalCreatedObject Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId
+
```
This example shows how to use the Get-MgBetaServicePrincipalCreatedObject Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md
index 5c072922cf..e69de29bb2 100644
--- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md
+++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgBetaServicePrincipalDelta Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Beta.Applications
-Get-MgBetaServicePrincipalDelta
-```
-This example shows how to use the Get-MgBetaServicePrincipalDelta Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md
index 0796505b21..f18e566f18 100644
--- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md
+++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md
@@ -1,7 +1,11 @@
-### Example 1: Using the Get-MgBetaServicePrincipalOwnedObject Cmdlet
+### Example 1: Code snippet
+
```powershell
+
Import-Module Microsoft.Graph.Beta.Applications
+
Get-MgBetaServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId
+
```
This example shows how to use the Get-MgBetaServicePrincipalOwnedObject Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
+
diff --git a/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md b/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md
+++ b/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md b/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md
+++ b/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md b/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md
+++ b/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/v1.0/examples/Get-MgApplicationDelta.md b/src/Applications/v1.0/examples/Get-MgApplicationDelta.md
index 0b84850fcb..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Get-MgApplicationDelta.md
+++ b/src/Applications/v1.0/examples/Get-MgApplicationDelta.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgApplicationDelta Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Applications
-Get-MgApplicationDelta
-```
-This example shows how to use the Get-MgApplicationDelta Cmdlet.
-To learn about permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall).
diff --git a/src/Applications/v1.0/examples/Get-MgApplicationLogo.md b/src/Applications/v1.0/examples/Get-MgApplicationLogo.md
index 093355d11d..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Get-MgApplicationLogo.md
+++ b/src/Applications/v1.0/examples/Get-MgApplicationLogo.md
@@ -1,18 +0,0 @@
-### Example 1: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
-### Example 2: {{ Add title here }}
-```powershell
-PS C:\> {{ Add code here }}
-
-{{ Add output here }}
-```
-
-{{ Add description here }}
-
diff --git a/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md b/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md
index 2d3f5c4b44..e69de29bb2 100644
--- a/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md
+++ b/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md
@@ -1,7 +0,0 @@
-### Example 1: Using the Get-MgServicePrincipalDelta Cmdlet
-```powershell
-Import-Module Microsoft.Graph.Applications
-Get-MgServicePrincipalDelta
-```
-This example shows how to use the Get-MgServicePrincipalDelta Cmdlet.
-To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference).
diff --git a/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs b/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs
index 55c71b7ac3..d7060de2a4 100644
--- a/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs
+++ b/src/Authentication/Authentication.Core/Interfaces/IAuthContext.cs
@@ -47,6 +47,7 @@ public interface IAuthContext
string Account { get; set; }
string CertificateThumbprint { get; set; }
string CertificateSubjectName { get; set; }
+ bool SendCertificateChain { get; set; }
X509Certificate2 Certificate { get; set; }
ContextScope ContextScope { get; set; }
Version PSHostVersion { get; set; }
diff --git a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
index b4f506895e..c385a4f63a 100644
--- a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
+++ b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
@@ -4,15 +4,15 @@
9.0
netstandard2.0;net6.0;net472
Microsoft.Graph.PowerShell.Authentication.Core
- 2.6.1
+ 2.18.0
true
true
-
-
+
+
diff --git a/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
index 132f55ec10..3d00433610 100644
--- a/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
+++ b/src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
@@ -184,7 +184,8 @@ private static async Task GetClientCertificateCrede
var clientCredentialOptions = new ClientCertificateCredentialOptions
{
AuthorityHost = new Uri(GetAuthorityUrl(authContext)),
- TokenCachePersistenceOptions = GetTokenCachePersistenceOptions(authContext)
+ TokenCachePersistenceOptions = GetTokenCachePersistenceOptions(authContext),
+ SendCertificateChain = authContext.SendCertificateChain
};
var clientCertificateCredential = new ClientCertificateCredential(authContext.TenantId, authContext.ClientId, GetCertificate(authContext), clientCredentialOptions);
return await Task.FromResult(clientCertificateCredential).ConfigureAwait(false);
diff --git a/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs b/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs
index d9dbc26e8b..e337dae06a 100644
--- a/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs
+++ b/src/Authentication/Authentication.Test/Helpers/AuthenticationHelpersTests.cs
@@ -324,6 +324,8 @@ private static X509Certificate2 CreateAndStoreSelfSignedCert(string certName, St
///
///
///
+
+ #pragma warning disable IA5352
private static X509Certificate2 CreateSelfSignedCert(string certName)
{
ECDsa ecdsaKey = ECDsa.Create();
diff --git a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
index 4855b3e8fe..3fd26ccb59 100644
--- a/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
+++ b/src/Authentication/Authentication/Cmdlets/ConnectMgGraph.cs
@@ -46,6 +46,9 @@ public class ConnectMgGraph : PSCmdlet, IModuleAssemblyInitializer, IModuleAssem
[Parameter(ParameterSetName = Constants.AppCertificateParameterSet, Position = 3, HelpMessage = HelpMessages.CertificateThumbprint)]
public string CertificateThumbprint { get; set; }
+ [Parameter(ParameterSetName = Constants.AppCertificateParameterSet, HelpMessage = HelpMessages.SendCertificateChain)]
+ public bool SendCertificateChain { get; set; }
+
[Parameter(Mandatory = false, ParameterSetName = Constants.AppCertificateParameterSet, HelpMessage = HelpMessages.Certificate)]
public X509Certificate2 Certificate { get; set; }
@@ -200,6 +203,7 @@ private async Task ProcessRecordAsync()
authContext.ClientId = ClientId;
authContext.CertificateThumbprint = CertificateThumbprint;
authContext.CertificateSubjectName = CertificateSubjectName;
+ authContext.SendCertificateChain = SendCertificateChain;
authContext.Certificate = Certificate;
// Default to Process but allow the customer to change this via `-ContextScope`.
authContext.ContextScope = this.IsParameterBound(nameof(ContextScope)) ? ContextScope : ContextScope.Process;
diff --git a/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs b/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs
index 5804251062..86ebdad20c 100644
--- a/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs
+++ b/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs
@@ -402,8 +402,7 @@ private Uri PrepareUri(HttpClient httpClient, Uri uri)
// set body to null to prevent later FillRequestStream
Body = null;
}
- // TODO: Review the fix made in https://github.com/microsoftgraph/msgraph-sdk-powershell/pull/2455.
- return uriBuilder.Uri;
+ return uriBuilder.Uri.EscapeDataStrings();
}
private void ThrowIfError(ErrorRecord error)
diff --git a/src/Authentication/Authentication/Constants.cs b/src/Authentication/Authentication/Constants.cs
index a60a0dd9ae..47924df784 100644
--- a/src/Authentication/Authentication/Constants.cs
+++ b/src/Authentication/Authentication/Constants.cs
@@ -35,6 +35,7 @@ public static class HelpMessages
public const string ClientId = "The client id of your application.";
public const string CertificateSubjectName = "The subject distinguished name of a certificate. The Certificate will be retrieved from the current user's certificate store.";
public const string CertificateThumbprint = "The thumbprint of your certificate. The Certificate will be retrieved from the current user's certificate store.";
+ public const string SendCertificateChain = "Include x5c header in client claims when acquiring a token to enable subject name / issuer based authentication using given certificate.";
public const string Certificate = "An X.509 certificate supplied during invocation.";
public const string ClientSecretCredential = "The PSCredential object provides the application ID and client secret for service principal credentials. For more information about the PSCredential object, type Get-Help Get-Credential.";
public const string AccessToken = "Specifies a bearer token for Microsoft Graph service. Access tokens do timeout and you'll have to handle their refresh.";
diff --git a/src/Authentication/Authentication/Helpers/EncodeUriPath.cs b/src/Authentication/Authentication/Helpers/EncodeUriPath.cs
index 72d8790a19..f16020f6b7 100644
--- a/src/Authentication/Authentication/Helpers/EncodeUriPath.cs
+++ b/src/Authentication/Authentication/Helpers/EncodeUriPath.cs
@@ -18,13 +18,25 @@ public static Uri EscapeDataStrings(this Uri uri)
int counter = 0;
var pathSegments = uri.OriginalString.Split('/');
StringBuilder sb = new StringBuilder();
- foreach (var segment in pathSegments)
+ foreach (var s in pathSegments)
{
+ var segment = s;
//Skips the left part of the uri i.e https://graph.microsoft.com
if (counter > 2)
{
sb.Append('/');
- sb.Append(Uri.EscapeDataString(segment));
+ if(s.Contains("?"))
+ {
+ var queryStringIndex = segment.IndexOf("?");
+ string queryString = segment.Substring(queryStringIndex);
+ segment = s.Substring(0, queryStringIndex);
+ sb.Append(Uri.EscapeDataString(segment));
+ sb.Append(queryString);
+ }
+ else
+ {
+ sb.Append(Uri.EscapeDataString(segment));
+ }
}
counter++;
}
diff --git a/src/Authentication/Authentication/Models/AuthContext.cs b/src/Authentication/Authentication/Models/AuthContext.cs
index 18b87777d9..6538667da0 100644
--- a/src/Authentication/Authentication/Models/AuthContext.cs
+++ b/src/Authentication/Authentication/Models/AuthContext.cs
@@ -19,6 +19,7 @@ public class AuthContext : IAuthContext
public TokenCredentialType TokenCredentialType { get; set; }
public string CertificateThumbprint { get; set; }
public string CertificateSubjectName { get; set; }
+ public bool SendCertificateChain { get; set; }
public string Account { get; set; }
public string AppName { get; set; }
public ContextScope ContextScope { get; set; }
diff --git a/src/Authentication/Authentication/Models/GraphCommand.cs b/src/Authentication/Authentication/Models/GraphCommand.cs
index fd9fcc4ecc..521f2f58e6 100644
--- a/src/Authentication/Authentication/Models/GraphCommand.cs
+++ b/src/Authentication/Authentication/Models/GraphCommand.cs
@@ -73,6 +73,10 @@ public class GraphCommand : IGraphCommand
///
public string OutputType { get; set; }
///
+ /// The response type of the command.
+ ///
+ public string ApiReferenceLink { get; set; }
+ ///
/// The parameter sets of the command.
///
public string[] Variants { get; set; }
@@ -103,5 +107,14 @@ public class GraphPermission
/// Full deescription of the permission.
///
public string FullDescription { get; set; }
+ ///
+ /// Least privilege flag shows whether the permission is the least privilege.
+ ///
+ public bool IsLeastPrivilege { get; set; }
+
+ ///
+ /// Permission scope type. It can either be delegated or application scope.
+ ///
+ public string PermissionType { get; set; }
}
}
diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json
index dde52c89eb..8b8e234604 100644
--- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json
+++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json
@@ -1,235 +1,276 @@
[
{
- "Uri": "/applications/{application-id}/addKey",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/addKey",
+ "OutputType": "IMicrosoftGraphKeyCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphKeyCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgApplicationKey"
+ "Method": "POST",
+ "Command": "Add-MgApplicationKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/addPassword",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/addPassword",
+ "OutputType": "IMicrosoftGraphPasswordCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphPasswordCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgApplicationPassword"
+ "Method": "POST",
+ "Command": "Add-MgApplicationPassword",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/applyDecisions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/applyDecisions",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage access reviews that you can access",
+ "Name": "AccessReview.ReadWrite.Membership",
+ "Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "AccessReview.ReadWrite.Membership",
- "Description": "Manage access reviews for group and app memberships",
+ "Name": "AccessReview.ReadWrite.All",
+ "Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgBetaAccessReviewDecision"
+ "Method": "POST",
+ "Command": "Add-MgBetaAccessReviewDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgBetaAccessReviewInstanceDecision"
+ "Method": "POST",
+ "Command": "Add-MgBetaAccessReviewInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/addKey",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/addKey",
+ "OutputType": "IMicrosoftGraphKeyCredential",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphKeyCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaApplicationKey"
+ "Method": "POST",
+ "Command": "Add-MgBetaApplicationKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/addPassword",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/addPassword",
+ "OutputType": "IMicrosoftGraphPasswordCredential",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPasswordCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaApplicationPassword"
+ "Method": "POST",
+ "Command": "Add-MgBetaApplicationPassword",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/members/add",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaChatMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/addLargeGalleryView",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/addLargeGalleryView",
+ "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Calls.JoinGroupCallAsGuest.All",
+ "Description": "Join group calls and meetings as a guest",
+ "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calls.JoinGroupCallAsGuest.All",
- "Description": "Join group calls and meetings as a guest",
- "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
- "IsAdmin": false
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaCommunicationCallLargeGalleryView"
+ "Method": "POST",
+ "Command": "Add-MgBetaCommunicationCallLargeGalleryView",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/applyHold",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/applyHold",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"Apply1",
@@ -238,15 +279,16 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaComplianceEdiscoveryCaseCustodianHold"
+ "Method": "POST",
+ "Command": "Add-MgBetaComplianceEdiscoveryCaseCustodianHold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/applyHold",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/applyHold",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"Apply1",
@@ -255,369 +297,377 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold"
+ "Method": "POST",
+ "Command": "Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/applyTags",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/applyTags",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"ApplyExpanded",
"ApplyViaIdentity",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag"
+ "Method": "POST",
+ "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-applytags?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/addToReviewSet",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/addToReviewSet",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet"
+ "Method": "POST",
+ "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-addtoreviewset?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/addApps",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/addApps",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded"
],
- "Command": "Add-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp"
+ "Method": "POST",
+ "Command": "Add-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/addLanguageFiles",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/addLanguageFiles",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile"
+ "Method": "POST",
+ "Command": "Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/apply",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/apply",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyExpanded",
"ApplyViaIdentity",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy"
+ "Method": "POST",
+ "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/applyConfig",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/applyConfig",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyExpanded"
],
- "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyConfig"
+ "Method": "POST",
+ "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyConfig",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaExternalConnectionItemActivity"
+ "Method": "POST",
+ "Command": "Add-MgBetaExternalConnectionItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/addFavorite",
"Module": "Beta.Groups",
- "Permissions": {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/addFavorite",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddViaIdentity"
],
- "Command": "Add-MgBetaGroupFavorite"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupFavorite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/add",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupSite"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupSiteContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupSiteContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupSiteContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupSiteContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupSiteListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupSiteListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupSiteListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupSiteListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup",
"Module": "Beta.Groups",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaGroupToLifecyclePolicy"
+ "Method": "POST",
+ "Command": "Add-MgBetaGroupToLifecyclePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision"
+ "Method": "POST",
+ "Command": "Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision"
+ "Method": "POST",
+ "Command": "Add-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"Apply1",
@@ -626,28 +676,33 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold"
+ "Method": "POST",
+ "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"Apply1",
@@ -656,838 +711,880 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold"
+ "Method": "POST",
+ "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"ApplyExpanded",
"ApplyViaIdentity",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag"
+ "Method": "POST",
+ "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet"
+ "Method": "POST",
+ "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate",
+ "OutputType": "IMicrosoftGraphSelfSignedCertificate",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSelfSignedCertificate",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaServicePrincipalTokenSigningCertificate"
+ "Method": "POST",
+ "Command": "Add-MgBetaServicePrincipalTokenSigningCertificate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaShareListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaShareListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaShareListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaShareListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/sites/add",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded"
],
- "Command": "Add-MgBetaSite"
+ "Method": "POST",
+ "Command": "Add-MgBetaSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/addCopy",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaSiteContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaSiteContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaSiteContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaSiteContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaSiteListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaSiteListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaSiteListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaSiteListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/members/add",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaTeamChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/members/add",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "TeamMember.ReadWrite.All",
- "Description": "Add and remove members from all teams",
- "FullDescription": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaTeamMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/members/add",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaTeamPrimaryChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaTeamworkDeletedTeamChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaTeamworkDeletedTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/addUserInputLog",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/addUserInputLog",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaTenantRelationshipManagedTenantAlertUserInputLog"
+ "Method": "POST",
+ "Command": "Add-MgBetaTenantRelationshipManagedTenantAlertUserInputLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}/apply",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "ManagedTenants.ReadWrite.All",
- "Description": "Read and write all managed tenant information",
- "FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}/apply",
"OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyExpanded",
"ApplyViaIdentity",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgBetaTenantRelationshipManagedTenantManagementAction"
+ "Method": "POST",
+ "Command": "Add-MgBetaTenantRelationshipManagedTenantManagementAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managementaction-apply?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/members/add",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/chats/{chat-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaUserChatMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaUserChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaUserDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgBetaUserDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaUserDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgBetaUserDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/followedSites/add",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "Sites.ReadWrite.All",
- "Description": "Read and write items in all site collections",
- "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/followedSites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaUserFollowedSite"
+ "Method": "POST",
+ "Command": "Add-MgBetaUserFollowedSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/applyDecisions",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/applyDecisions",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgBetaUserPendingAccessReviewInstanceDecision"
+ "Method": "POST",
+ "Command": "Add-MgBetaUserPendingAccessReviewInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/addMembersById",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/addMembersById",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembers",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembers",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembersById",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembersById",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembers",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembers",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembersById",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembersById",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMemberById"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMemberById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembers",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembers",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembersById",
"Module": "Beta.WindowsUpdates",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembersById",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMemberById"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMemberById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembers",
"Module": "Beta.WindowsUpdates",
- "Permissions": {
- "Name": "WindowsUpdates.ReadWrite.All",
- "Description": "Read and write all Windows update deployment settings",
- "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembers",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMember"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembersById",
"Module": "Beta.WindowsUpdates",
- "Permissions": {
- "Name": "WindowsUpdates.ReadWrite.All",
- "Description": "Read and write all Windows update deployment settings",
- "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembersById",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMemberById"
+ "Method": "POST",
+ "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMemberById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/members/add",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/chats/{chat-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgChatMember"
+ "Method": "POST",
+ "Command": "Add-MgChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/addLargeGalleryView",
"Module": "CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/addLargeGalleryView",
+ "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Calls.JoinGroupCallAsGuest.All",
+ "Description": "Join group calls and meetings as a guest",
+ "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calls.JoinGroupCallAsGuest.All",
- "Description": "Join group calls and meetings as a guest",
- "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
- "IsAdmin": false
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgCommunicationCallLargeGalleryView"
+ "Method": "POST",
+ "Command": "Add-MgCommunicationCallLargeGalleryView",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities",
"Module": "Search",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgExternalConnectionItemActivity"
+ "Method": "POST",
+ "Command": "Add-MgExternalConnectionItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgGroupDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgGroupDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/addFavorite",
"Module": "Groups",
- "Permissions": {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/addFavorite",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddViaIdentity"
],
- "Command": "Add-MgGroupFavorite"
+ "Method": "POST",
+ "Command": "Add-MgGroupFavorite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/add",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupSite"
+ "Method": "POST",
+ "Command": "Add-MgGroupSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupSiteContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgGroupSiteContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupSiteListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgGroupSiteListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup",
"Module": "Groups",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgGroupToLifecyclePolicy"
+ "Method": "POST",
+ "Command": "Add-MgGroupToLifecyclePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-addgroup?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions",
"Module": "Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Apply",
"ApplyViaIdentity"
],
- "Command": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision"
+ "Method": "POST",
+ "Command": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"Apply1",
@@ -1496,28 +1593,33 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold"
+ "Method": "POST",
+ "Command": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"Apply1",
@@ -1526,19673 +1628,22857 @@
"ApplyViaIdentity1",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold"
+ "Method": "POST",
+ "Command": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Apply",
"ApplyExpanded",
"ApplyViaIdentity",
"ApplyViaIdentityExpanded"
],
- "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag"
+ "Method": "POST",
+ "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet"
+ "Method": "POST",
+ "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/addKey",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/addKey",
+ "OutputType": "IMicrosoftGraphKeyCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphKeyCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgServicePrincipalKey"
+ "Method": "POST",
+ "Command": "Add-MgServicePrincipalKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/addPassword",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/addPassword",
+ "OutputType": "IMicrosoftGraphPasswordCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphPasswordCredential",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgServicePrincipalPassword"
+ "Method": "POST",
+ "Command": "Add-MgServicePrincipalPassword",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate",
+ "OutputType": "IMicrosoftGraphSelfSignedCertificate",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSelfSignedCertificate",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgServicePrincipalTokenSigningCertificate"
+ "Method": "POST",
+ "Command": "Add-MgServicePrincipalTokenSigningCertificate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgShareListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgShareListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgShareListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgShareListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/sites/add",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded"
],
- "Command": "Add-MgSite"
+ "Method": "POST",
+ "Command": "Add-MgSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/addCopy",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgSiteContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgSiteContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgSiteListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgSiteListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/members/add",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgTeamChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/members/add",
"Module": "Teams",
- "Permissions": {
- "Name": "TeamMember.ReadWrite.All",
- "Description": "Add and remove members from all teams",
- "FullDescription": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgTeamMember"
+ "Method": "POST",
+ "Command": "Add-MgTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/members/add",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/primaryChannel/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgTeamPrimaryChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgTeamworkDeletedTeamChannelMember"
+ "Method": "POST",
+ "Command": "Add-MgTeamworkDeletedTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/members/add",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/chats/{chat-id}/members/add",
"OutputType": "IMicrosoftGraphActionResultPart",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgUserChatMember"
+ "Method": "POST",
+ "Command": "Add-MgUserChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgUserDriveListContentTypeCopy"
+ "Method": "POST",
+ "Command": "Add-MgUserDriveListContentTypeCopy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgUserDriveListContentTypeCopyFromContentTypeHub"
+ "Method": "POST",
+ "Command": "Add-MgUserDriveListContentTypeCopyFromContentTypeHub",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/followedSites/add",
"Module": "Users.Actions",
- "Permissions": {
- "Name": "Sites.ReadWrite.All",
- "Description": "Read and write items in all site collections",
- "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/followedSites/add",
"OutputType": "IMicrosoftGraphSite",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Add",
"AddExpanded",
"AddViaIdentity",
"AddViaIdentityExpanded"
],
- "Command": "Add-MgUserFollowedSite"
+ "Method": "POST",
+ "Command": "Add-MgUserFollowedSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Approve",
"ApproveExpanded"
],
- "Command": "Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp"
+ "Method": "POST",
+ "Command": "Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/approve",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/approve",
"OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Approve",
"ApproveExpanded",
"ApproveViaIdentity",
"ApproveViaIdentityExpanded"
],
- "Command": "Approve-MgBetaDeviceManagementElevationRequest"
+ "Method": "POST",
+ "Command": "Approve-MgBetaDeviceManagementElevationRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalRequests/{operationApprovalRequest-id}/approve",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/operationApprovalRequests/{operationApprovalRequest-id}/approve",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Approve",
"ApproveExpanded",
"ApproveViaIdentity",
"ApproveViaIdentityExpanded"
],
- "Command": "Approve-MgBetaDeviceManagementOperationApprovalRequest"
+ "Method": "POST",
+ "Command": "Approve-MgBetaDeviceManagementOperationApprovalRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/zebraFotaConnector/approveFotaApps",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/zebraFotaConnector/approveFotaApps",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Approve"
],
- "Command": "Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp"
+ "Method": "POST",
+ "Command": "Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/unsetVerifiedPublisher",
"Module": "Applications",
- "Permissions": {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.",
- "IsAdmin": true
- },
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/unsetVerifiedPublisher",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetViaIdentity"
],
- "Command": "Clear-MgApplicationVerifiedPublisher"
+ "Method": "POST",
+ "Command": "Clear-MgApplicationVerifiedPublisher",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/unsetVerifiedPublisher",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/unsetVerifiedPublisher",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetViaIdentity"
],
- "Command": "Clear-MgBetaApplicationVerifiedPublisher"
+ "Method": "POST",
+ "Command": "Clear-MgBetaApplicationVerifiedPublisher",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaChatMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaChatMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaChatMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaChatMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/presences/{presence-id}/clearPresence",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/presences/{presence-id}/clearPresence",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Clear",
"ClearExpanded",
"ClearViaIdentity",
"ClearViaIdentityExpanded"
],
- "Command": "Clear-MgBetaCommunicationPresence"
+ "Method": "POST",
+ "Command": "Clear-MgBetaCommunicationPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0"
},
{
- "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Clear",
"ClearViaIdentity"
],
- "Command": "Clear-MgBetaCommunicationPresenceUserPreferredPresence"
+ "Method": "POST",
+ "Command": "Clear-MgBetaCommunicationPresenceUserPreferredPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/purgeData",
"Module": "Beta.Compliance",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/purgeData",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Purge",
"PurgeViaIdentity"
],
- "Command": "Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData"
+ "Method": "POST",
+ "Command": "Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-purgedata?view=graph-rest-1.0"
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/wipe",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/wipe",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeViaIdentity"
],
- "Command": "Clear-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration"
+ "Method": "POST",
+ "Command": "Clear-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/wipe",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/wipe",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
+ "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
+ "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgBetaDeviceManagementComanagedDevice"
+ "Method": "POST",
+ "Command": "Clear-MgBetaDeviceManagementComanagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
"Description": "Perform user-impacting remote actions on Microsoft Intune devices",
"FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgBetaDeviceManagementManagedDevice"
+ "Method": "POST",
+ "Command": "Clear-MgBetaDeviceManagementManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Purge",
"PurgeExpanded",
"PurgeViaIdentity",
"PurgeViaIdentityExpanded"
],
- "Command": "Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData"
+ "Method": "POST",
+ "Command": "Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "ChannelMessage.Send",
- "Description": "Send channel messages",
- "FullDescription": "Allows the app to send channel messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "ChannelMessage.Send",
- "Description": "Send channel messages",
- "FullDescription": "Allows the app to send channel messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamPrimaryChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamPrimaryChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamPrimaryChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamPrimaryChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/wipeAndBlockManagedApps",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/wipeAndBlockManagedApps",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeViaIdentity"
],
- "Command": "Clear-MgBetaUserAndBlockManagedApp"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserAndBlockManagedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
{
"Name": "ChatMessage.Send",
"Description": "Send chat messages",
"FullDescription": "Allows an app to send one-to-one and group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaUserChatMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserChatMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgBetaUserChatMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserChatMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByAzureAdDeviceId",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByAzureAdDeviceId",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByDeviceTag",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByDeviceTag",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Wipe1",
"WipeExpanded1",
"WipeViaIdentity1",
"WipeViaIdentityExpanded1"
],
- "Command": "Clear-MgBetaUserManagedAppRegistrationByDeviceTag"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserManagedAppRegistrationByDeviceTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgBetaUserManagedDevice"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/presence/clearPresence",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/presence/clearPresence",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Presence.ReadWrite",
"Description": "Read and write your presence information",
"FullDescription": "Allows the app to read the presence information and write activity and availability on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clear",
"ClearExpanded",
"ClearViaIdentity",
"ClearViaIdentityExpanded"
],
- "Command": "Clear-MgBetaUserPresence"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/presence/clearUserPreferredPresence",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/presence/clearUserPreferredPresence",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Presence.ReadWrite",
"Description": "Read and write your presence information",
"FullDescription": "Allows the app to read the presence information and write activity and availability on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clear",
"ClearViaIdentity"
],
- "Command": "Clear-MgBetaUserPresenceUserPreferredPresence"
+ "Method": "POST",
+ "Command": "Clear-MgBetaUserPresenceUserPreferredPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgChatMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgChatMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgChatMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgChatMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/presences/{presence-id}/clearPresence",
"Module": "CloudCommunications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/communications/presences/{presence-id}/clearPresence",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Clear",
"ClearExpanded",
"ClearViaIdentity",
"ClearViaIdentityExpanded"
],
- "Command": "Clear-MgCommunicationPresence"
+ "Method": "POST",
+ "Command": "Clear-MgCommunicationPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0"
},
{
- "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence",
"Module": "CloudCommunications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Clear",
"ClearViaIdentity"
],
- "Command": "Clear-MgCommunicationPresenceUserPreferredPresence"
+ "Method": "POST",
+ "Command": "Clear-MgCommunicationPresenceUserPreferredPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe",
"Module": "DeviceManagement.Actions",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
"Description": "Perform user-impacting remote actions on Microsoft Intune devices",
"FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgDeviceManagementManagedDevice"
+ "Method": "POST",
+ "Command": "Clear-MgDeviceManagementManagedDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData",
"Module": "Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "v1.0",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Purge",
"PurgeExpanded",
"PurgeViaIdentity",
"PurgeViaIdentityExpanded"
],
- "Command": "Clear-MgSecurityCaseEdiscoveryCaseSearchData"
+ "Method": "POST",
+ "Command": "Clear-MgSecurityCaseEdiscoveryCaseSearchData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Teams",
- "Permissions": {
- "Name": "ChannelMessage.Send",
- "Description": "Send channel messages",
- "FullDescription": "Allows the app to send channel messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Teams",
- "Permissions": {
- "Name": "ChannelMessage.Send",
- "Description": "Send channel messages",
- "FullDescription": "Allows the app to send channel messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamPrimaryChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamPrimaryChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamPrimaryChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamPrimaryChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
{
"Name": "ChatMessage.Send",
"Description": "Send chat messages",
"FullDescription": "Allows an app to send one-to-one and group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgUserChatMessageReaction"
+ "Method": "POST",
+ "Command": "Clear-MgUserChatMessageReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Unset",
"UnsetExpanded",
"UnsetViaIdentity",
"UnsetViaIdentityExpanded"
],
- "Command": "Clear-MgUserChatMessageReplyReaction"
+ "Method": "POST",
+ "Command": "Clear-MgUserChatMessageReplyReaction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Wipe",
"WipeExpanded",
"WipeViaIdentity",
"WipeViaIdentityExpanded"
],
- "Command": "Clear-MgUserManagedDevice"
+ "Method": "POST",
+ "Command": "Clear-MgUserManagedDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/presence/clearPresence",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/presence/clearPresence",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Presence.ReadWrite",
"Description": "Read and write your presence information",
"FullDescription": "Allows the app to read the presence information and write activity and availability on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clear",
"ClearExpanded",
"ClearViaIdentity",
"ClearViaIdentityExpanded"
],
- "Command": "Clear-MgUserPresence"
+ "Method": "POST",
+ "Command": "Clear-MgUserPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/presence/clearUserPreferredPresence",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/presence/clearUserPreferredPresence",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Presence.ReadWrite",
"Description": "Read and write your presence information",
"FullDescription": "Allows the app to read the presence information and write activity and availability on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clear",
"ClearViaIdentity"
],
- "Command": "Clear-MgUserPresenceUserPreferredPresence"
+ "Method": "POST",
+ "Command": "Clear-MgUserPresenceUserPreferredPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/close",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/close",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Close",
"CloseViaIdentity"
],
- "Command": "Close-MgBetaComplianceEdiscoveryCase"
+ "Method": "POST",
+ "Command": "Close-MgBetaComplianceEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-close?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Close",
"CloseViaIdentity"
],
- "Command": "Close-MgBetaSecurityCaseEdiscoveryCase"
+ "Method": "POST",
+ "Command": "Close-MgBetaSecurityCaseEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Close",
"CloseViaIdentity"
],
- "Command": "Close-MgSecurityCaseEdiscoveryCase"
+ "Method": "POST",
+ "Command": "Close-MgSecurityCaseEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/compare(templateId='{templateId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/compare(templateId='{templateId}')",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
- "Method": "GET",
"Variants": [
"Compare",
"CompareViaIdentity"
],
- "Command": "Compare-MgBetaDeviceManagementIntent"
+ "Method": "GET",
+ "Command": "Compare-MgBetaDeviceManagementIntent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/compare(templateId='{templateId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/compare(templateId='{templateId}')",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
- "Method": "GET",
"Variants": [
"Compare",
"CompareViaIdentity"
],
- "Command": "Compare-MgBetaDeviceManagementTemplate"
+ "Method": "GET",
+ "Command": "Compare-MgBetaDeviceManagementTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/compare(templateId='{templateId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/compare(templateId='{templateId}')",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison",
- "Method": "GET",
"Variants": [
"Compare",
"CompareViaIdentity"
],
- "Command": "Compare-MgBetaDeviceManagementTemplateMigratableTo"
+ "Method": "GET",
+ "Command": "Compare-MgBetaDeviceManagementTemplateMigratableTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkSettings/completeSignup",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/androidForWorkSettings/completeSignup",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteExpanded"
],
- "Command": "Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup"
+ "Method": "POST",
+ "Command": "Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteExpanded"
],
- "Command": "Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup"
+ "Method": "POST",
+ "Command": "Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/impactedResources/{impactedResource-id}/complete",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/impactedResources/{impactedResource-id}/complete",
"OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaDirectoryImpactedResource"
+ "Method": "POST",
+ "Command": "Complete-MgBetaDirectoryImpactedResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-1.0"
},
{
- "Uri": "/directory/recommendations/{recommendation-id}/complete",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "DirectoryRecommendations.ReadWrite.All",
- "Description": "Read and update all Azure AD recommendations",
- "FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/directory/recommendations/{recommendation-id}/complete",
"OutputType": "IMicrosoftGraphRecommendation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaDirectoryRecommendation"
+ "Method": "POST",
+ "Command": "Complete-MgBetaDirectoryRecommendation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-complete?view=graph-rest-1.0"
},
{
- "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/complete",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "DirectoryRecommendations.ReadWrite.All",
- "Description": "Read and update all Azure AD recommendations",
- "FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/complete",
"OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaDirectoryRecommendationImpactedResource"
+ "Method": "POST",
+ "Command": "Complete-MgBetaDirectoryRecommendationImpactedResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Teamwork.Migrate.All",
- "Description": "Create chat and channel messages with anyone's identity and with any timestamp",
- "FullDescription": "Allows the app to create chat and channel messages, without a signed in user. The app specifies which user appears as the sender, and can backdate the message to appear as if it was sent long ago. The messages can be sent to any chat or channel in the organization.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaTeamChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgBetaTeamChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/completeMigration",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Teamwork.Migrate.All",
- "Description": "Create chat and channel messages with anyone's identity and with any timestamp",
- "FullDescription": "Allows the app to create chat and channel messages, without a signed in user. The app specifies which user appears as the sender, and can backdate the message to appear as if it was sent long ago. The messages can be sent to any chat or channel in the organization.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaTeamMigration"
+ "Method": "POST",
+ "Command": "Complete-MgBetaTeamMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/completeMigration",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaTeamPrimaryChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgBetaTeamPrimaryChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaTeamworkDeletedTeamChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgBetaTeamworkDeletedTeamChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/complete",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "Tasks.ReadWrite",
- "Description": "Create, read, update, and delete your tasks and task lists",
- "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/complete",
"OutputType": "IMicrosoftGraphOutlookTask",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaUserOutlookTask"
+ "Method": "POST",
+ "Command": "Complete-MgBetaUserOutlookTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete",
"OutputType": "IMicrosoftGraphOutlookTask",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaUserOutlookTaskFolderTask"
+ "Method": "POST",
+ "Command": "Complete-MgBetaUserOutlookTaskFolderTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete",
"OutputType": "IMicrosoftGraphOutlookTask",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgBetaUserOutlookTaskGroupTaskFolderTask"
+ "Method": "POST",
+ "Command": "Complete-MgBetaUserOutlookTaskGroupTaskFolderTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration",
"Module": "Teams",
- "Permissions": {
- "Name": "Teamwork.Migrate.All",
- "Description": "Create chat and channel messages with anyone's identity and with any timestamp",
- "FullDescription": "Allows the app to create chat and channel messages, without a signed in user. The app specifies which user appears as the sender, and can backdate the message to appear as if it was sent long ago. The messages can be sent to any chat or channel in the organization.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgTeamChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgTeamChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/completeMigration",
"Module": "Teams",
- "Permissions": {
- "Name": "Teamwork.Migrate.All",
- "Description": "Create chat and channel messages with anyone's identity and with any timestamp",
- "FullDescription": "Allows the app to create chat and channel messages, without a signed in user. The app specifies which user appears as the sender, and can backdate the message to appear as if it was sent long ago. The messages can be sent to any chat or channel in the organization.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgTeamMigration"
+ "Method": "POST",
+ "Command": "Complete-MgTeamMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/completeMigration",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/primaryChannel/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgTeamPrimaryChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgTeamPrimaryChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Complete",
"CompleteViaIdentity"
],
- "Command": "Complete-MgTeamworkDeletedTeamChannelMigration"
+ "Method": "POST",
+ "Command": "Complete-MgTeamworkDeletedTeamChannelMigration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/checkMemberGroups",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgApplicationMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgApplicationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/checkMemberObjects",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgApplicationMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgApplicationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaAdministrativeUnitMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaAdministrativeUnitMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaAdministrativeUnitMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaAdministrativeUnitMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/checkMemberGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaApplicationMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaApplicationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/checkMemberObjects",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaApplicationMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaApplicationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/signIns/confirmCompromised",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/signIns/confirmCompromised",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "IdentityRiskEvent.ReadWrite.All",
- "Description": "Read and write all risk detection information",
- "FullDescription": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections. ",
- "IsAdmin": false
- },
{
"Name": "IdentityRiskyUser.ReadWrite.All",
"Description": "Read and write identity risky user information",
"FullDescription": "Allows the app to read and update identity risky user information for all users in your organization on your behalf. Update operations include dismissing risky users.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "IdentityRiskEvent.ReadWrite.All",
+ "Description": "Read and write all risk detection information",
+ "FullDescription": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgBetaAuditLogSignInCompromised"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaAuditLogSignInCompromised",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmcompromised?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/signIns/confirmSafe",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/signIns/confirmSafe",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "IdentityRiskEvent.ReadWrite.All",
- "Description": "Read and write all risk detection information",
- "FullDescription": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections. ",
- "IsAdmin": false
- },
{
"Name": "IdentityRiskyUser.ReadWrite.All",
"Description": "Read and write identity risky user information",
"FullDescription": "Allows the app to read and update identity risky user information for all users in your organization on your behalf. Update operations include dismissing risky users.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "IdentityRiskEvent.ReadWrite.All",
+ "Description": "Read and write all risk detection information",
+ "FullDescription": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgBetaAuditLogSignInSafe"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaAuditLogSignInSafe",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmsafe?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaContactMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaContactMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaContactMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaContactMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contracts/{contract-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/{contract-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaContractMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaContractMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/{contract-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/{contract-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaContractMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaContractMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Verify",
"VerifyViaIdentity"
],
- "Command": "Confirm-MgBetaDeviceManagementWindowsEnrollmentAutoDiscovery"
+ "Method": "GET",
+ "Command": "Confirm-MgBetaDeviceManagementWindowsEnrollmentAutoDiscovery",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDeviceMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDeviceMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDeviceMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDeviceMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryDeletedItemMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryDeletedItemMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryDeletedItemMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryDeletedItemMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups",
"Module": "Beta.DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryObjectMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryObjectMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects",
"Module": "Beta.DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryObjectMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryObjectMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryRoleMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryRoleMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryRoleMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryRoleMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectorySettingTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectorySettingTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaDirectorySettingTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDirectorySettingTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/verify",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "Domain.ReadWrite.All",
- "Description": "Read and write domains",
- "FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/verify",
"OutputType": "IMicrosoftGraphDomain",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyViaIdentity"
],
- "Command": "Confirm-MgBetaDomain"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaDomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckViaIdentity"
],
- "Command": "Confirm-MgBetaGroupGrantedPermissionForApp"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaGroupGrantedPermissionForApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/checkMemberGroups",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaGroupMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaGroupMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/checkMemberObjects",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaGroupMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaGroupMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/verifySignature",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/verifySignature",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyExpanded",
"VerifyViaIdentity",
"VerifyViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaGroupSiteInformationProtectionSignature"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaGroupSiteInformationProtectionSignature",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/verifySignature",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/verifySignature",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyExpanded"
],
- "Command": "Confirm-MgBetaInformationProtectionSignature"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaInformationProtectionSignature",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/checkMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaOrganizationMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaOrganizationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/checkMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaOrganizationMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaOrganizationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
- "Description": "Read and write all identity risky service principal information",
- "FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgBetaRiskyServicePrincipalCompromised"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaRiskyServicePrincipalCompromised",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyUsers/confirmCompromised",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyUser.ReadWrite.All",
- "Description": "Read and write all risky user information",
- "FullDescription": "Allows the app to read and update identity risky user information for your organization without a signed-in user. Update operations include dismissing risky users.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyUsers/confirmCompromised",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgBetaRiskyUserCompromised"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaRiskyUserCompromised",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-confirmcompromised?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaServicePrincipalMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaServicePrincipalMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaServicePrincipalMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaServicePrincipalMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/informationProtection/verifySignature",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/informationProtection/verifySignature",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyExpanded",
"VerifyViaIdentity",
"VerifyViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaSiteInformationProtectionSignature"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaSiteInformationProtectionSignature",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/confirm",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Schedule.ReadWrite.All",
- "Description": "Read and write all schedule items",
- "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/confirm",
"OutputType": "IMicrosoftGraphTimeCard",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Confirm",
"ConfirmViaIdentity"
],
- "Command": "Confirm-MgBetaTeamScheduleTimeCard"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaTeamScheduleTimeCard",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-confirm?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/informationProtection/verifySignature",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/informationProtection/verifySignature",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyExpanded",
"VerifyViaIdentity",
"VerifyViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaUserInformationProtectionSignature"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaUserInformationProtectionSignature",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/checkMemberGroups",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaUserMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaUserMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/checkMemberObjects",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgBetaUserMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgBetaUserMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgContactMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgContactMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgContactMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgContactMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contracts/{contract-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/contracts/{contract-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgContractMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgContractMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/{contract-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/contracts/{contract-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgContractMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgContractMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')",
"Module": "DeviceManagement.Functions",
+ "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Verify",
"VerifyViaIdentity"
],
- "Command": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery"
+ "Method": "GET",
+ "Command": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDeviceMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgDeviceMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDeviceMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgDeviceMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryDeletedItemMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryDeletedItemMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryDeletedItemMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryDeletedItemMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups",
"Module": "DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryObjectMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryObjectMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects",
"Module": "DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryObjectMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryObjectMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryRoleMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryRoleMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryRoleMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryRoleMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgDirectoryRoleTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgDirectoryRoleTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/verify",
"Module": "Identity.DirectoryManagement",
- "Permissions": {
- "Name": "Domain.ReadWrite.All",
- "Description": "Read and write domains",
- "FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/domains/{domain-id}/verify",
"OutputType": "IMicrosoftGraphDomain",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Verify",
"VerifyViaIdentity"
],
- "Command": "Confirm-MgDomain"
+ "Method": "POST",
+ "Command": "Confirm-MgDomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckViaIdentity"
],
- "Command": "Confirm-MgGroupGrantedPermissionForApp"
+ "Method": "POST",
+ "Command": "Confirm-MgGroupGrantedPermissionForApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/checkMemberGroups",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgGroupMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgGroupMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/checkMemberObjects",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgGroupMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgGroupMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberGroups",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgGroupSettingTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgGroupSettingTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberObjects",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgGroupSettingTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgGroupSettingTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/checkMemberGroups",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/organization/{organization-id}/checkMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgOrganizationMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgOrganizationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/checkMemberObjects",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/organization/{organization-id}/checkMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgOrganizationMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgOrganizationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised",
"Module": "Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
- "Description": "Read and write all identity risky service principal information",
- "FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgRiskyServicePrincipalCompromised"
+ "Method": "POST",
+ "Command": "Confirm-MgRiskyServicePrincipalCompromised",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyUsers/confirmCompromised",
"Module": "Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyUser.ReadWrite.All",
- "Description": "Read and write all risky user information",
- "FullDescription": "Allows the app to read and update identity risky user information for your organization without a signed-in user. Update operations include dismissing risky users.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/identityProtection/riskyUsers/confirmCompromised",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Confirm",
"ConfirmExpanded"
],
- "Command": "Confirm-MgRiskyUserCompromised"
+ "Method": "POST",
+ "Command": "Confirm-MgRiskyUserCompromised",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-confirmcompromised?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgServicePrincipalMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgServicePrincipalMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgServicePrincipalMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgServicePrincipalMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/checkMemberGroups",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/checkMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgUserMemberGroup"
+ "Method": "POST",
+ "Command": "Confirm-MgUserMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/checkMemberObjects",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/checkMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Check",
"CheckExpanded",
"CheckViaIdentity",
"CheckViaIdentityExpanded"
],
- "Command": "Confirm-MgUserMemberObject"
+ "Method": "POST",
+ "Command": "Confirm-MgUserMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/chromeOSOnboardingSettings/connect",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/chromeOSOnboardingSettings/connect",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Connect",
"ConnectExpanded"
],
- "Command": "Connect-MgBetaDeviceManagementChromeOSOnboardingSetting"
+ "Method": "POST",
+ "Command": "Connect-MgBetaDeviceManagementChromeOSOnboardingSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/zebraFotaConnector/connect",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/zebraFotaConnector/connect",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Connect"
],
- "Command": "Connect-MgBetaDeviceManagementZebraFotaConnector"
+ "Method": "POST",
+ "Command": "Connect-MgBetaDeviceManagementZebraFotaConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/convertFromMobileAppCatalogPackage(mobileAppCatalogPackageId='{mobileAppCatalogPackageId}')",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/convertFromMobileAppCatalogPackage(mobileAppCatalogPackageId='{mobileAppCatalogPackageId}')",
+ "OutputType": "IMicrosoftGraphMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileApp",
- "Method": "GET",
"Variants": [
"Convert",
"ConvertViaIdentity"
],
- "Command": "Convert-MgBetaDeviceAppManagementMobileAppFromMobileAppCatalogPackage"
+ "Method": "GET",
+ "Command": "Convert-MgBetaDeviceAppManagementMobileAppFromMobileAppCatalogPackage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/convertExternalToInternalMemberUser",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/convertExternalToInternalMemberUser",
+ "OutputType": "IMicrosoftGraphConversionUserDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User-ConvertToInternal.ReadWrite.All",
"Description": "Convert an external user to internal member user",
"FullDescription": "Allow the app to convert an external user to an internal member user, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "User.ReadWrite.All",
"Description": "Read and write all users' full profiles",
"FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversionUserDetails",
- "Method": "POST",
"Variants": [
"Convert",
"ConvertExpanded",
"ConvertViaIdentity",
"ConvertViaIdentityExpanded"
],
- "Command": "Convert-MgBetaUserExternalToInternalMemberUser"
+ "Method": "POST",
+ "Command": "Convert-MgBetaUserExternalToInternalMemberUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-convertexternaltointernalmemberuser?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/clone",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/clone",
"OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Clone",
"CloneViaIdentity"
],
- "Command": "Copy-MgBetaDeviceManagementReusablePolicySetting"
+ "Method": "POST",
+ "Command": "Copy-MgBetaDeviceManagementReusablePolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.ReadWrite",
"Description": "Have full access to your files",
"FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
- },
- {
- "Name": "Files.ReadWrite.All",
- "Description": "Have full access to all files you have access to",
- "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Edit or delete items in all site collections",
"FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Files.ReadWrite.All",
+ "Description": "Have full access to all files you have access to",
+ "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgBetaDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/copy",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgBetaDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupSiteContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupSiteContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaGroupSiteListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaGroupSiteListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaShareListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaShareListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Read and write items in all site collections",
+ "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Read and write items in all site collections",
- "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaSiteOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaSiteOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/clone",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/clone",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Team.Create",
+ "Description": "Create teams",
+ "FullDescription": "Allows the app to create teams without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Team.Create",
- "Description": "Create teams",
- "FullDescription": "Allows the app to create teams without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clone",
"CloneExpanded",
"CloneViaIdentity",
"CloneViaIdentityExpanded"
],
- "Command": "Copy-MgBetaTeam"
+ "Method": "POST",
+ "Command": "Copy-MgBetaTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/root/copy",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy",
"OutputType": "IMicrosoftGraphMailFolder",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserMailFolder"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserMailFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy",
"OutputType": "IMicrosoftGraphMailFolder",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserMailFolderChildFolder"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserMailFolderChildFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserMailFolderChildFolderMessage"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserMailFolderChildFolderMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserMailFolderMessage"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserMailFolderMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/messages/{message-id}/copy",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserMessage"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgBetaUserOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgBetaUserOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Files.ReadWrite",
"Description": "Have full access to your files",
"FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
- },
- {
- "Name": "Files.ReadWrite.All",
- "Description": "Have full access to all files you have access to",
- "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Edit or delete items in all site collections",
"FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Files.ReadWrite.All",
+ "Description": "Have full access to all files you have access to",
+ "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/copy",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgGroupDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgGroupDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgGroupDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgGroupOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgGroupOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgGroupOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Groups",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgGroupOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupSiteContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgGroupSiteContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Files",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgShareListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgShareListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Read and write items in all site collections",
+ "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Read and write items in all site collections",
- "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgSiteContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteNotebookSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteNotebookSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionGroupSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionGroupSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionGroupSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionGroupSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionPageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionPageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Sites",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgSiteOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgSiteOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/clone",
"Module": "Teams",
+ "Uri": "/teams/{team-id}/clone",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Team.Create",
+ "Description": "Create teams",
+ "FullDescription": "Allows the app to create teams without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Team.Create",
- "Description": "Create teams",
- "FullDescription": "Allows the app to create teams without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Clone",
"CloneExpanded",
"CloneViaIdentity",
"CloneViaIdentityExpanded"
],
- "Command": "Copy-MgTeam"
+ "Method": "POST",
+ "Command": "Copy-MgTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserDriveItem"
+ "Method": "POST",
+ "Command": "Copy-MgUserDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserDriveListContentTypeToDefaultContentLocation"
+ "Method": "POST",
+ "Command": "Copy-MgUserDriveListContentTypeToDefaultContentLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/drives/{drive-id}/root/copy",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/drives/{drive-id}/root/copy",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserDriveRoot"
+ "Method": "POST",
+ "Command": "Copy-MgUserDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy",
"Module": "Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy",
"OutputType": "IMicrosoftGraphMailFolder",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserMailFolder"
+ "Method": "POST",
+ "Command": "Copy-MgUserMailFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy",
"OutputType": "IMicrosoftGraphMailFolder",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserMailFolderChildFolder"
+ "Method": "POST",
+ "Command": "Copy-MgUserMailFolderChildFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserMailFolderChildFolderMessage"
+ "Method": "POST",
+ "Command": "Copy-MgUserMailFolderChildFolderMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy",
"Module": "Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserMailFolderMessage"
+ "Method": "POST",
+ "Command": "Copy-MgUserMailFolderMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/messages/{message-id}/copy",
"Module": "Users.Actions",
- "Permissions": {
- "Name": "Mail.ReadWrite",
- "Description": "Read and write mail in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/messages/{message-id}/copy",
"OutputType": "IMicrosoftGraphMessage",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserMessage"
+ "Method": "POST",
+ "Command": "Copy-MgUserMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserOnenoteNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgUserOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserOnenotePageToSection"
+ "Method": "POST",
+ "Command": "Copy-MgUserOnenotePageToSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserOnenoteSectionToNotebook"
+ "Method": "POST",
+ "Command": "Copy-MgUserOnenoteSectionToNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite",
- "Description": "Read and write your OneNote notebooks",
- "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Notes.ReadWrite.All",
"Description": "Read and write all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.ReadWrite",
+ "Description": "Read and write your OneNote notebooks",
+ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "POST",
"Variants": [
"Copy",
"CopyExpanded",
"CopyViaIdentity",
"CopyViaIdentityExpanded"
],
- "Command": "Copy-MgUserOnenoteSectionToSectionGroup"
+ "Method": "POST",
+ "Command": "Copy-MgUserOnenoteSectionToSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/deny",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/deny",
"OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Deny",
"DenyExpanded",
"DenyViaIdentity",
"DenyViaIdentityExpanded"
],
- "Command": "Deny-MgBetaDeviceManagementElevationRequest"
+ "Method": "POST",
+ "Command": "Deny-MgBetaDeviceManagementElevationRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disable",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disable",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaDeviceManagementComanagedDevice"
+ "Method": "POST",
+ "Command": "Disable-MgBetaDeviceManagementComanagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaDeviceManagementComanagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Disable-MgBetaDeviceManagementComanagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disable",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disable",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaDeviceManagementManagedDevice"
+ "Method": "POST",
+ "Command": "Disable-MgBetaDeviceManagementManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaDeviceManagementManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Disable-MgBetaDeviceManagementManagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/disableSmsSignIn",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "UserAuthenticationMethod.ReadWrite.All",
- "Description": "Read and write all users' authentication methods",
- "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/disableSmsSignIn",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaUserAuthenticationMethodSmsSignIn"
+ "Method": "POST",
+ "Command": "Disable-MgBetaUserAuthenticationMethodSmsSignIn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disable",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disable",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaUserManagedDevice"
+ "Method": "POST",
+ "Command": "Disable-MgBetaUserManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgBetaUserManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Disable-MgBetaUserManagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode",
"Module": "DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgDeviceManagementManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Disable-MgDeviceManagementManagedDeviceLostMode",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/disableSmsSignIn",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/disableSmsSignIn",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "UserAuthenticationMethod.ReadWrite",
- "Description": "Read and write your authentication methods",
- "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.",
- "IsAdmin": true
- },
{
"Name": "UserAuthenticationMethod.ReadWrite.All",
"Description": "Read and write all users' authentication methods",
"FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "UserAuthenticationMethod.ReadWrite",
+ "Description": "Read and write your authentication methods",
+ "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn"
+ "Method": "POST",
+ "Command": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-disablesmssignin?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Disable",
"DisableViaIdentity"
],
- "Command": "Disable-MgUserManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Disable-MgUserManagedDeviceLostMode",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/chromeOSOnboardingSettings/disconnect",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/chromeOSOnboardingSettings/disconnect",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disconnect"
],
- "Command": "Disconnect-MgBetaDeviceManagementChromeOSOnboardingSetting"
+ "Method": "POST",
+ "Command": "Disconnect-MgBetaDeviceManagementChromeOSOnboardingSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Disconnect",
"DisconnectViaIdentity"
],
- "Command": "Disconnect-MgBetaDeviceManagementRemoteAssistancePartner"
+ "Method": "POST",
+ "Command": "Disconnect-MgBetaDeviceManagementRemoteAssistancePartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/zebraFotaConnector/disconnect",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/zebraFotaConnector/disconnect",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Disconnect"
],
- "Command": "Disconnect-MgBetaDeviceManagementZebraFotaConnector"
+ "Method": "POST",
+ "Command": "Disconnect-MgBetaDeviceManagementZebraFotaConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect",
"Module": "DeviceManagement.Actions",
+ "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Disconnect",
"DisconnectViaIdentity"
],
- "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner"
+ "Method": "POST",
+ "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/enableAndroidDeviceAdministratorEnrollment",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/enableAndroidDeviceAdministratorEnrollment",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Enable"
],
- "Command": "Enable-MgBetaDeviceManagementAndroidDeviceAdministratorEnrollment"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementAndroidDeviceAdministratorEnrollment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/enable",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/assignmentFilters/enable",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable",
"EnableExpanded"
],
- "Command": "Enable-MgBetaDeviceManagementAssignmentFilter"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementAssignmentFilter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable",
"EnableExpanded",
"EnableViaIdentity",
"EnableViaIdentityExpanded"
],
- "Command": "Enable-MgBetaDeviceManagementComanagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementComanagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/enableGlobalScripts",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/deviceHealthScripts/enableGlobalScripts",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Enable"
],
- "Command": "Enable-MgBetaDeviceManagementDeviceHealthScriptGlobalScript"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementDeviceHealthScriptGlobalScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/enableLegacyPcManagement",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/enableLegacyPcManagement",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable"
],
- "Command": "Enable-MgBetaDeviceManagementLegacyPcManagement"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementLegacyPcManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable",
"EnableExpanded",
"EnableViaIdentity",
"EnableViaIdentityExpanded"
],
- "Command": "Enable-MgBetaDeviceManagementManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementManagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/tenantAttachRBAC/enable",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/tenantAttachRBAC/enable",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Enable",
"EnableExpanded"
],
- "Command": "Enable-MgBetaDeviceManagementTenantAttachRbac"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementTenantAttachRbac",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/enableUnlicensedAdminstrators",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/enableUnlicensedAdminstrators",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable"
],
- "Command": "Enable-MgBetaDeviceManagementUnlicensedAdminstrator"
+ "Method": "POST",
+ "Command": "Enable-MgBetaDeviceManagementUnlicensedAdminstrator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/enableSmsSignIn",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "UserAuthenticationMethod.ReadWrite.All",
- "Description": "Read and write all users' authentication methods",
- "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/enableSmsSignIn",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable",
"EnableViaIdentity"
],
- "Command": "Enable-MgBetaUserAuthenticationMethodSmsSignIn"
+ "Method": "POST",
+ "Command": "Enable-MgBetaUserAuthenticationMethodSmsSignIn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enableLostMode",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enableLostMode",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Enable",
"EnableExpanded",
"EnableViaIdentity",
"EnableViaIdentityExpanded"
],
- "Command": "Enable-MgBetaUserManagedDeviceLostMode"
+ "Method": "POST",
+ "Command": "Enable-MgBetaUserManagedDeviceLostMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/enableSmsSignIn",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/enableSmsSignIn",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "UserAuthenticationMethod.ReadWrite",
- "Description": "Read and write your authentication methods",
- "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.",
- "IsAdmin": true
- },
{
"Name": "UserAuthenticationMethod.ReadWrite.All",
"Description": "Read and write all users' authentication methods",
"FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "UserAuthenticationMethod.ReadWrite",
+ "Description": "Read and write your authentication methods",
+ "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Enable",
"EnableViaIdentity"
],
- "Command": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn"
+ "Method": "POST",
+ "Command": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-enablesmssignin?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/export",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/export",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaComplianceEdiscoveryCaseReviewSet"
+ "Method": "POST",
+ "Command": "Export-MgBetaComplianceEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-export?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/exportMobileConfig",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/exportMobileConfig",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Export",
"ExportViaIdentity"
],
- "Command": "Export-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig"
+ "Method": "GET",
+ "Command": "Export-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}/exportPersonalData",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}/exportPersonalData",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read.All",
"Description": "Read all shared cross-tenant user profiles and export their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite.All",
"Description": "Read all shared cross-tenant user profiles and export or delete their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaDirectoryInboundSharedUserProfilePersonalData"
+ "Method": "POST",
+ "Command": "Export-MgBetaDirectoryInboundSharedUserProfilePersonalData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-exportpersonaldata?view=graph-rest-1.0"
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/export",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/export",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportViaIdentity"
],
- "Command": "Export-MgBetaPrivilegedAccessResourceRoleAssignment"
+ "Method": "GET",
+ "Command": "Export-MgBetaPrivilegedAccessResourceRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/export",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/export",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportViaIdentity"
],
- "Command": "Export-MgBetaPrivilegedAccessRoleAssignment"
+ "Method": "GET",
+ "Command": "Export-MgBetaPrivilegedAccessRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/reconciliation/billed/export",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/reconciliation/billed/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgBetaReportPartnerBillingReconciliationBilled"
+ "Method": "POST",
+ "Command": "Export-MgBetaReportPartnerBillingReconciliationBilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/usage/billed/export",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/usage/billed/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgBetaReportPartnerBillingUsageBilled"
+ "Method": "POST",
+ "Command": "Export-MgBetaReportPartnerBillingUsageBilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/usage/unbilled/export",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/usage/unbilled/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgBetaReportPartnerBillingUsageUnbilled"
+ "Method": "POST",
+ "Command": "Export-MgBetaReportPartnerBillingUsageUnbilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet"
+ "Method": "POST",
+ "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery"
+ "Method": "POST",
+ "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportReport",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchReport"
+ "Method": "POST",
+ "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportResult",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportResult",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchResult"
+ "Method": "POST",
+ "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/exportDeviceAndAppManagementData",
"Module": "Beta.Users.Functions",
+ "Uri": "/users/{user-id}/exportDeviceAndAppManagementData",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Export",
"Export1",
"ExportViaIdentity",
"ExportViaIdentity1"
],
- "Command": "Export-MgBetaUserDeviceAndAppManagementData"
+ "Method": "GET",
+ "Command": "Export-MgBetaUserDeviceAndAppManagementData",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/exportPersonalData",
"Module": "Beta.Users.Actions",
- "Permissions": {
- "Name": "User.Export.All",
- "Description": "Export user's data",
- "FullDescription": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/exportPersonalData",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgBetaUserPersonalData"
+ "Method": "POST",
+ "Command": "Export-MgBetaUserPersonalData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/reconciliation/billed/export",
"Module": "Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/reports/partners/billing/reconciliation/billed/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgReportPartnerBillingReconciliationBilled"
+ "Method": "POST",
+ "Command": "Export-MgReportPartnerBillingReconciliationBilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/usage/billed/export",
"Module": "Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/reports/partners/billing/usage/billed/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgReportPartnerBillingUsageBilled"
+ "Method": "POST",
+ "Command": "Export-MgReportPartnerBillingUsageBilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/usage/unbilled/export",
"Module": "Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/reports/partners/billing/usage/unbilled/export",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded"
],
- "Command": "Export-MgReportPartnerBillingUsageUnbilled"
+ "Method": "POST",
+ "Command": "Export-MgReportPartnerBillingUsageUnbilled",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSet"
+ "Method": "POST",
+ "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export",
"Module": "Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery"
+ "Method": "POST",
+ "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/exportDeviceAndAppManagementData",
"Module": "Users.Functions",
+ "Uri": "/users/{user-id}/exportDeviceAndAppManagementData",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Export",
"Export1",
"ExportViaIdentity",
"ExportViaIdentity1"
],
- "Command": "Export-MgUserDeviceAndAppManagementData"
+ "Method": "GET",
+ "Command": "Export-MgUserDeviceAndAppManagementData",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/exportPersonalData",
"Module": "Users.Actions",
- "Permissions": {
- "Name": "User.Export.All",
- "Description": "Export user's data",
- "FullDescription": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/exportPersonalData",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Export",
"ExportExpanded",
"ExportViaIdentity",
"ExportViaIdentityExpanded"
],
- "Command": "Export-MgUserPersonalData"
+ "Method": "POST",
+ "Command": "Export-MgUserPersonalData",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgBetaApplicationSynchronizationJobSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgBetaApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Locate",
"LocateViaIdentity"
],
- "Command": "Find-MgBetaDeviceManagementComanagedDevice"
+ "Method": "POST",
+ "Command": "Find-MgBetaDeviceManagementComanagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Locate",
"LocateViaIdentity"
],
- "Command": "Find-MgBetaDeviceManagementManagedDevice"
+ "Method": "POST",
+ "Command": "Find-MgBetaDeviceManagementManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})",
"OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Find1",
"FindViaIdentity1"
],
- "Command": "Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode"
+ "Method": "GET",
+ "Command": "Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationStrengthPolicies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authenticationStrengthPolicies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})",
+ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.ReadWrite.AuthenticationMethod",
- "Description": "Read and write all authentication method policies ",
- "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.ReadWrite.AuthenticationMethod",
+ "Description": "Read and write all authentication method policies ",
+ "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
"Variants": [
"Find",
"FindViaIdentity"
],
- "Command": "Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode"
+ "Method": "GET",
+ "Command": "Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
+ "OutputType": "IMicrosoftGraphDirectoryDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice",
"Module": "Beta.Users.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Locate",
"LocateViaIdentity"
],
- "Command": "Find-MgBetaUserManagedDevice"
+ "Method": "POST",
+ "Command": "Find-MgBetaUserManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/findMeetingTimes",
"Module": "Beta.Users.Actions",
+ "Uri": "/users/{user-id}/findMeetingTimes",
+ "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Calendars.Read.Shared",
"Description": "Read calendars you can access",
"FullDescription": "Allows the app to read events in all calendars that you can access, including delegate and shared calendars. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Calendars.ReadWrite.Shared",
"Description": "Read and write to your and shared calendars",
"FullDescription": "Allows the app to read, update, create and delete events in all calendars in your organization you have permissions to access. This includes delegate and shared calendars.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult",
- "Method": "POST",
"Variants": [
"Find",
"FindExpanded",
"FindViaIdentity",
"FindViaIdentityExpanded"
],
- "Command": "Find-MgBetaUserMeetingTime"
+ "Method": "POST",
+ "Command": "Find-MgBetaUserMeetingTime",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/findRooms",
"Module": "Beta.Users.Functions",
+ "Uri": "/users/{user-id}/findRooms",
+ "OutputType": "IMicrosoftGraphEmailAddress",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "User.ReadBasic.All",
"Description": "Read all users' basic profiles",
"FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization without a signed-in user. Includes display name, first and last name, email address, open extensions, and photo.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmailAddress",
- "Method": "GET",
"Variants": [
"Find",
"Find1",
"FindViaIdentity",
"FindViaIdentity1"
],
- "Command": "Find-MgBetaUserRoom"
+ "Method": "GET",
+ "Command": "Find-MgBetaUserRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/findRoomLists",
"Module": "Beta.Users.Functions",
+ "Uri": "/users/{user-id}/findRoomLists",
+ "OutputType": "IMicrosoftGraphEmailAddress",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "User.ReadBasic.All",
"Description": "Read all users' basic profiles",
"FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization without a signed-in user. Includes display name, first and last name, email address, open extensions, and photo.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmailAddress",
- "Method": "GET",
"Variants": [
"Find",
"FindViaIdentity"
],
- "Command": "Find-MgBetaUserRoomList"
+ "Method": "GET",
+ "Command": "Find-MgBetaUserRoomList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findroomlists?view=graph-rest-1.0"
},
{
- "Uri": "/admin/windows/updates/products/findByCatalogId(catalogID='{catalogID}')",
"Module": "Beta.WindowsUpdates",
- "Permissions": [
- {
- "Name": "WindowsUpdates.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "WindowsUpdates.ReadWrite.All",
- "Description": "Read and write all Windows update deployment settings",
- "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/products/findByCatalogId(catalogID='{catalogID}')",
"OutputType": "IMicrosoftGraphWindowsUpdatesProduct",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Find",
"FindViaIdentity"
],
- "Command": "Find-MgBetaWindowsUpdatesProductByCatalogId"
+ "Method": "GET",
+ "Command": "Find-MgBetaWindowsUpdatesProductByCatalogId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/windows/updates/products/findByKbNumber(kbNumber={kbNumber})",
"Module": "Beta.WindowsUpdates",
- "Permissions": [
- {
- "Name": "WindowsUpdates.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "WindowsUpdates.ReadWrite.All",
- "Description": "Read and write all Windows update deployment settings",
- "FullDescription": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
+ "Uri": "/admin/windows/updates/products/findByKbNumber(kbNumber={kbNumber})",
"OutputType": "IMicrosoftGraphWindowsUpdatesProduct",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Find",
"FindViaIdentity"
],
- "Command": "Find-MgBetaWindowsUpdatesProductByKbNumber"
+ "Method": "GET",
+ "Command": "Find-MgBetaWindowsUpdatesProductByKbNumber",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice",
"Module": "DeviceManagement.Actions",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.PrivilegedOperations.All",
- "Description": "Perform user-impacting remote actions on Microsoft Intune devices",
- "FullDescription": "Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "v1.0",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Locate",
"LocateViaIdentity"
],
- "Command": "Find-MgDeviceManagementManagedDevice"
+ "Method": "POST",
+ "Command": "Find-MgDeviceManagementManagedDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover",
+ "OutputType": "IMicrosoftGraphDirectoryDefinition",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Discover",
"DiscoverViaIdentity"
],
- "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory"
+ "Method": "POST",
+ "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice",
"Module": "Users.Actions",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Locate",
"LocateViaIdentity"
],
- "Command": "Find-MgUserManagedDevice"
+ "Method": "POST",
+ "Command": "Find-MgUserManagedDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0"
},
{
- "Uri": "/users/{user-id}/findMeetingTimes",
"Module": "Users.Actions",
+ "Uri": "/users/{user-id}/findMeetingTimes",
+ "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Calendars.Read.Shared",
"Description": "Read calendars you can access",
"FullDescription": "Allows the app to read events in all calendars that you can access, including delegate and shared calendars. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Calendars.ReadWrite.Shared",
"Description": "Read and write to your and shared calendars",
"FullDescription": "Allows the app to read, update, create and delete events in all calendars in your organization you have permissions to access. This includes delegate and shared calendars.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult",
- "Method": "POST",
"Variants": [
"Find",
"FindExpanded",
"FindViaIdentity",
"FindViaIdentityExpanded"
],
- "Command": "Find-MgUserMeetingTime"
+ "Method": "POST",
+ "Command": "Find-MgUserMeetingTime",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge",
"Module": "DeviceManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/admin/edge",
"OutputType": "IMicrosoftGraphEdge",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgAdminEdge"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdge",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode",
"Module": "DeviceManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/admin/edge/internetExplorerMode",
"OutputType": "IMicrosoftGraphInternetExplorerMode",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgAdminEdgeInternetExplorerMode"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}",
+ "OutputType": "IMicrosoftGraphBrowserSiteList",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSiteList",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists",
+ "OutputType": "IMicrosoftGraphBrowserSiteList",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSiteList",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/$count",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListCount"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}",
+ "OutputType": "IMicrosoftGraphBrowserSharedCookie",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSharedCookie",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies",
+ "OutputType": "IMicrosoftGraphBrowserSharedCookie",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSharedCookie",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}",
+ "OutputType": "IMicrosoftGraphBrowserSite",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSite",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites",
+ "OutputType": "IMicrosoftGraphBrowserSite",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphBrowserSite",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count",
"Module": "DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/people",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/admin/people",
+ "OutputType": "IMicrosoftGraphPeopleAdminSettings",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphPeopleAdminSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAdminPeople"
+ "Method": "GET",
+ "Command": "Get-MgAdminPeople",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}",
"Module": "Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}",
"OutputType": "IMicrosoftGraphProfileCardProperty",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAdminPeopleProfileCardProperty"
+ "Method": "GET",
+ "Command": "Get-MgAdminPeopleProfileCardProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/profilecardproperty-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/admin/people/profileCardProperties",
+ "OutputType": "IMicrosoftGraphProfileCardProperty",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphProfileCardProperty",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAdminPeopleProfileCardProperty"
+ "Method": "GET",
+ "Command": "Get-MgAdminPeopleProfileCardProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilecardproperties?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties/$count",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/admin/people/profileCardProperties/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAdminPeopleProfileCardPropertyCount"
+ "Method": "GET",
+ "Command": "Get-MgAdminPeopleProfileCardPropertyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/people/pronouns",
"Module": "Identity.DirectoryManagement",
+ "Uri": "/admin/people/pronouns",
+ "OutputType": "IMicrosoftGraphPronounsSettings",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphPronounsSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAdminPeoplePronoun"
+ "Method": "GET",
+ "Command": "Get-MgAdminPeoplePronoun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-list-pronouns?view=graph-rest-1.0"
},
{
- "Uri": "/admin/sharepoint",
"Module": "Sites",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/admin/sharepoint",
"OutputType": "IMicrosoftGraphSharepoint",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgAdminSharepoint"
+ "Method": "GET",
+ "Command": "Get-MgAdminSharepoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/sharepoint/settings",
"Module": "Sites",
+ "Uri": "/admin/sharepoint/settings",
+ "OutputType": "IMicrosoftGraphSharepointSettings",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "SharePointTenantSettings.Read.All",
"Description": "Read SharePoint and OneDrive tenant settings",
"FullDescription": "Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SharePointTenantSettings.ReadWrite.All",
"Description": "Read and change SharePoint and OneDrive tenant settings",
"FullDescription": "Allows the application to read and change the tenant-level settings of SharePoint and OneDrive, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSharepointSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAdminSharepointSetting"
+ "Method": "GET",
+ "Command": "Get-MgAdminSharepointSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharepointsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}",
"Module": "Identity.Governance",
- "Permissions": {
- "Name": "Agreement.Read.All",
- "Description": "Read all terms of use agreements",
- "FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreement"
+ "Method": "GET",
+ "Command": "Get-MgAgreement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreement"
+ "Method": "GET",
+ "Command": "Get-MgAgreement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgAgreementAcceptance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/acceptances",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/acceptances",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgAgreementAcceptance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreement-list-acceptances?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/acceptances/$count",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/acceptances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementAcceptanceCount"
+ "Method": "GET",
+ "Command": "Get-MgAgreementAcceptanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file",
"Module": "Identity.Governance",
+ "Uri": "/agreements/{agreement-id}/file",
+ "OutputType": "IMicrosoftGraphAgreementFile",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Agreement.Read.All",
"Description": "Read all terms of use agreements",
"FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Agreement.ReadWrite.All",
"Description": "Read and write all terms of use agreements",
"FullDescription": "Allows the app to read and write terms of use agreements on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphAgreementFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-get?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/files",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/files",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/$count",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileCount"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/$count",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileLocalizationCount"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileLocalizationVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileLocalizationVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"Module": "Identity.Governance",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAgreementFileVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgAgreementFileVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/getAllSites",
"Module": "Groups",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/sites/getAllSites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllGroupSite"
+ "Method": "GET",
+ "Command": "Get-MgAllGroupSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/allChannels/{channel-id}",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/team/allChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgAllGroupTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/allChannels",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/team/allChannels",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAllGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgAllGroupTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-allchannels?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/allChannels/$count",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/groups/{group-id}/team/allChannels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllGroupTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgAllGroupTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/getAllSites",
"Module": "Sites",
+ "Uri": "/sites/getAllSites",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"Get2"
],
- "Command": "Get-MgAllSite"
+ "Method": "GET",
+ "Command": "Get-MgAllSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/allChannels/{channel-id}",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teams/{team-id}/allChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgAllTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/allChannels",
"Module": "Teams",
+ "Uri": "/teams/{team-id}/allChannels",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAllTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgAllTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-allchannels?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/allChannels/$count",
"Module": "Teams",
+ "Uri": "/teams/{team-id}/allChannels/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgAllTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/getAllMessages",
"Module": "Teams",
+ "Uri": "/teams/getAllMessages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "v1.0",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAllTeamMessage"
+ "Method": "GET",
+ "Command": "Get-MgAllTeamMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/getAllMessages",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/teamwork/deletedTeams/getAllMessages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgAllTeamworkDeletedTeamMessage"
+ "Method": "GET",
+ "Command": "Get-MgAllTeamworkDeletedTeamMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/getAllMessages",
"Module": "Users.Functions",
+ "Uri": "/users/{user-id}/chats/getAllMessages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Chat.Read.All",
"Description": "Read all chat messages",
"FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAllUserChatMessage"
+ "Method": "GET",
+ "Command": "Get-MgAllUserChatMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAppCatalogTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps",
"Module": "Teams",
+ "Uri": "/appCatalogs/teamsApps",
+ "OutputType": "IMicrosoftGraphTeamsApp",
+ "ApiVersion": "v1.0",
"Permissions": [
+ {
+ "Name": "AppCatalog.Submit",
+ "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
+ "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AppCatalog.Submit",
- "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
- "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAppCatalogTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appcatalogs-list-teamsapps?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/$count",
"Module": "Teams",
+ "Uri": "/appCatalogs/teamsApps/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
+ {
+ "Name": "AppCatalog.Submit",
+ "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
+ "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.Submit",
- "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
- "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAppCatalogTeamAppCount"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAppCatalogTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgAppCatalogTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot",
"Module": "Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAppCatalogTeamAppDefinitionBot"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamAppDefinitionBot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkbot-get?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count",
"Module": "Teams",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAppCatalogTeamAppDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgAppCatalogTeamAppDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}",
"Module": "Applications",
+ "Uri": "/applications/{application-id}",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplication"
+ "Method": "GET",
+ "Command": "Get-MgApplication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications",
"Module": "Applications",
+ "Uri": "/applications",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplication"
+ "Method": "GET",
+ "Command": "Get-MgApplication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/appManagementPolicies",
"OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgApplicationAppManagementPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies/$ref",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/appManagementPolicies/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationAppManagementPolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgApplicationAppManagementPolicyByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/appManagementPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationAppManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationAppManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications(appId='{appId}')",
"Module": "Applications",
+ "Uri": "/applications(appId='{appId}')",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationByAppId"
+ "Method": "GET",
+ "Command": "Get-MgApplicationByAppId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/getByIds",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgApplicationById"
+ "Method": "POST",
+ "Command": "Get-MgApplicationById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/applications(uniqueName='{uniqueName}')",
"Module": "Applications",
+ "Uri": "/applications(uniqueName='{uniqueName}')",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationByUniqueName"
+ "Method": "GET",
+ "Command": "Get-MgApplicationByUniqueName",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/$count",
"Module": "Applications",
+ "Uri": "/applications/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/createdOnBehalfOf",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/createdOnBehalfOf",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationCreatedOnBehalfOf"
+ "Method": "GET",
+ "Command": "Get-MgApplicationCreatedOnBehalfOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/delta",
"Module": "Applications",
+ "Uri": "/applications/delta",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgApplicationDelta"
+ "Method": "GET",
+ "Command": "Get-MgApplicationDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}",
+ "OutputType": "IMicrosoftGraphExtensionProperty",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphExtensionProperty",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationExtensionProperty"
+ "Method": "GET",
+ "Command": "Get-MgApplicationExtensionProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/extensionProperties",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/extensionProperties",
+ "OutputType": "IMicrosoftGraphExtensionProperty",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphExtensionProperty",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationExtensionProperty"
+ "Method": "GET",
+ "Command": "Get-MgApplicationExtensionProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/extensionProperties/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/extensionProperties/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationExtensionPropertyCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationExtensionPropertyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}",
+ "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationFederatedIdentityCredential"
+ "Method": "GET",
+ "Command": "Get-MgApplicationFederatedIdentityCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials",
+ "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationFederatedIdentityCredential"
+ "Method": "GET",
+ "Command": "Get-MgApplicationFederatedIdentityCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-federatedidentitycredentials?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationFederatedIdentityCredentialCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationFederatedIdentityCredentialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
"OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies",
"OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/logo",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/logo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationLogo"
+ "Method": "GET",
+ "Command": "Get-MgApplicationLogo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/getMemberGroups",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgApplicationMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgApplicationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/getMemberObjects",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgApplicationMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgApplicationMemberObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/owners",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/owners",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwner"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/appRoleAssignment",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/appRoleAssignment",
"OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerAsAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsAppRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/appRoleAssignment",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/appRoleAssignment",
"OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwnerAsAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsAppRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/endpoint",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/servicePrincipal",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/user",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/$ref",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/owners/$ref",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationOwnerByRef"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/owners/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/owners/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/appRoleAssignment/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/appRoleAssignment/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerCountAsAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerCountAsAppRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/endpoint/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/servicePrincipal/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/user/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/owners/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationOwnerCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgApplicationOwnerCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization",
"OutputType": "IMicrosoftGraphSynchronization",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronization"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/acquireAccessToken",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/synchronization/acquireAccessToken",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Acquire",
"AcquireExpanded",
"AcquireViaIdentity",
"AcquireViaIdentityExpanded"
],
- "Command": "Get-MgApplicationSynchronizationAccessToken"
+ "Method": "POST",
+ "Command": "Get-MgApplicationSynchronizationAccessToken",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}",
"OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs",
"OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobBulkUpload"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobBulkUpload",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobBulkUploadContent"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobBulkUploadContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema",
"OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobSchema"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobSchema",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationJobSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationJobSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/secrets/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/secrets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationSecretCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationSecretCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
+ "OutputType": "IMicrosoftGraphSynchronizationSchema",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationTemplateSchema"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplateSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applicationTemplates/{applicationTemplate-id}",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applicationTemplates/{applicationTemplate-id}",
"OutputType": "IMicrosoftGraphApplicationTemplate",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/applicationTemplates",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applicationTemplates",
"OutputType": "IMicrosoftGraphApplicationTemplate",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgApplicationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0"
},
{
- "Uri": "/applicationTemplates/$count",
"Module": "Applications",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/applicationTemplates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgApplicationTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies",
+ "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenIssuancePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationTokenIssuancePolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenIssuancePolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationTokenIssuancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenIssuancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies",
+ "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenLifetimePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgApplicationTokenLifetimePolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenLifetimePolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count",
"Module": "Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgApplicationTokenLifetimePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgApplicationTokenLifetimePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}",
"Module": "Reports",
+ "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}",
+ "OutputType": "IMicrosoftGraphDirectoryAudit",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphDirectoryAudit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAuditLogDirectoryAudit"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogDirectoryAudit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryaudit-get?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/directoryAudits",
"Module": "Reports",
+ "Uri": "/auditLogs/directoryAudits",
+ "OutputType": "IMicrosoftGraphDirectoryAudit",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphDirectoryAudit",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAuditLogDirectoryAudit"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogDirectoryAudit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryaudit-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/directoryAudits/$count",
"Module": "Reports",
+ "Uri": "/auditLogs/directoryAudits/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAuditLogDirectoryAuditCount"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogDirectoryAuditCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}",
"Module": "Reports",
- "Permissions": [],
- "ApiVersion": "v1.0",
+ "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}",
"OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
+ "ApiVersion": "v1.0",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAuditLogProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogProvisioning",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/provisioning",
"Module": "Reports",
+ "Uri": "/auditLogs/provisioning",
+ "OutputType": "IMicrosoftGraphProvisioningObjectSummary",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAuditLogProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogProvisioning",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/provisioningobjectsummary-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/provisioning/$count",
"Module": "Reports",
+ "Uri": "/auditLogs/provisioning/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAuditLogProvisioningCount"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogProvisioningCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/signIns/{signIn-id}",
"Module": "Reports",
+ "Uri": "/auditLogs/signIns/{signIn-id}",
+ "OutputType": "IMicrosoftGraphSignIn",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSignIn",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgAuditLogSignIn"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-get?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/signIns",
"Module": "Reports",
+ "Uri": "/auditLogs/signIns",
+ "OutputType": "IMicrosoftGraphSignIn",
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": "IMicrosoftGraphSignIn",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgAuditLogSignIn"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/signIns/$count",
"Module": "Reports",
+ "Uri": "/auditLogs/signIns/$count",
+ "OutputType": null,
+ "ApiVersion": "v1.0",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "v1.0",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgAuditLogSignInCount"
+ "Method": "GET",
+ "Command": "Get-MgAuditLogSignInCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}",
+ "OutputType": "IMicrosoftGraphAccessReview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReview"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews",
+ "OutputType": "IMicrosoftGraphAccessReview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReview",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReview"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAccessReviewCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/decisions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/decisions",
+ "OutputType": "IMicrosoftGraphAccessReviewDecision",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listdecisions?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/decisions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/decisions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}",
"OutputType": "IMicrosoftGraphAccessReview",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances",
"OutputType": "IMicrosoftGraphAccessReview",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listdecisions?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceMyDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceMyDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewInstanceMyDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceMyDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listmydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceMyDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceMyDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceReviewer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewInstanceReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceReviewer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listreviewers?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewInstanceReviewerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewInstanceReviewerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}",
"OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewMyDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewMyDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/myDecisions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/myDecisions",
+ "OutputType": "IMicrosoftGraphAccessReviewDecision",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read access reviews that you can access",
"FullDescription": "Allows the app to read information on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage access reviews that you can access",
+ "Name": "AccessReview.ReadWrite.Membership",
+ "Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "AccessReview.ReadWrite.Membership",
- "Description": "Manage access reviews for group and app memberships",
+ "Name": "AccessReview.ReadWrite.All",
+ "Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewDecision",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewMyDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewMyDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listmydecisions?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/myDecisions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/myDecisions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read access reviews that you can access",
"FullDescription": "Allows the app to read information on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage access reviews that you can access",
+ "Name": "AccessReview.ReadWrite.Membership",
+ "Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "AccessReview.ReadWrite.Membership",
- "Description": "Manage access reviews for group and app memberships",
+ "Name": "AccessReview.ReadWrite.All",
+ "Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewMyDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewMyDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewReviewer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/accessReviews/{accessReview-id}/reviewers",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/reviewers",
+ "OutputType": "IMicrosoftGraphAccessReviewReviewer",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAccessReviewReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewReviewer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-listreviewers?view=graph-rest-1.0"
},
{
- "Uri": "/accessReviews/{accessReview-id}/reviewers/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/accessReviews/{accessReview-id}/reviewers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAccessReviewReviewerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAccessReviewReviewerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/edge",
"OutputType": "IMicrosoftGraphEdge",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminEdge"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdge",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/edge/internetExplorerMode",
"OutputType": "IMicrosoftGraphInternetExplorerMode",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerMode"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}",
+ "OutputType": "IMicrosoftGraphBrowserSiteList",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSiteList",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists",
+ "OutputType": "IMicrosoftGraphBrowserSiteList",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSiteList",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}",
+ "OutputType": "IMicrosoftGraphBrowserSharedCookie",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSharedCookie",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies",
+ "OutputType": "IMicrosoftGraphBrowserSharedCookie",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSharedCookie",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}",
+ "OutputType": "IMicrosoftGraphBrowserSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSite",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites",
+ "OutputType": "IMicrosoftGraphBrowserSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBrowserSite",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0"
},
{
- "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BrowserSiteLists.Read.All",
"Description": "Read all browser site lists for your organization",
"FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BrowserSiteLists.ReadWrite.All",
"Description": "Read and write all browser site lists for your organization",
"FullDescription": "Allows an app to read and write all browser site lists configured for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaAdministrativeUnitById"
+ "Method": "POST",
+ "Command": "Get-MgBetaAdministrativeUnitById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdministrativeUnitCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/delta",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaAdministrativeUnitDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device",
+ "OutputType": "IMicrosoftGraphDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact",
+ "OutputType": "IMicrosoftGraphOrgContact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user",
+ "OutputType": "IMicrosoftGraphUser",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitMemberCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaAdministrativeUnitMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaAdministrativeUnitMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaAdministrativeUnitMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}",
+ "OutputType": "IMicrosoftGraphScopedRoleMembership",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get-scopedrolemembers?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers",
+ "OutputType": "IMicrosoftGraphScopedRoleMembership",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-list-scopedrolemembers?view=graph-rest-1.0"
},
{
- "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdministrativeUnitScopedRoleMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdministrativeUnitScopedRoleMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/administrativeUnits/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/administrativeUnits/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaAdministrativeUnitUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaAdministrativeUnitUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/admin/people",
+ "OutputType": "IMicrosoftGraphPeopleAdminSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPeopleAdminSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminPeople"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeople",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/itemInsights",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/admin/people/itemInsights",
+ "OutputType": "IMicrosoftGraphInsightsSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInsightsSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminPeopleItemInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeopleItemInsight",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-list-iteminsights?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}",
"OutputType": "IMicrosoftGraphProfileCardProperty",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAdminPeopleProfileCardProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeopleProfileCardProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/profilecardproperty-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/admin/people/profileCardProperties",
+ "OutputType": "IMicrosoftGraphProfileCardProperty",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProfileCardProperty",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAdminPeopleProfileCardProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeopleProfileCardProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilecardproperties?view=graph-rest-1.0"
},
{
- "Uri": "/admin/people/profileCardProperties/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/admin/people/profileCardProperties/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminPeopleProfileCardPropertyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeopleProfileCardPropertyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/people/pronouns",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/admin/people/pronouns",
+ "OutputType": "IMicrosoftGraphPronounsSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PeopleSettings.Read.All",
"Description": "Read all tenant-wide people settings",
"FullDescription": "Allows the application to read tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "PeopleSettings.ReadWrite.All",
"Description": "Read and write all tenant-wide people settings",
"FullDescription": "Allows the application to read and write tenant-wide people settings without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPronounsSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminPeoplePronoun"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminPeoplePronoun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/peopleadminsettings-list-pronouns?view=graph-rest-1.0"
},
{
- "Uri": "/admin/reportSettings",
"Module": "Beta.Reports",
+ "Uri": "/admin/reportSettings",
+ "OutputType": "IMicrosoftGraphAdminReportSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ReportSettings.Read.All",
"Description": "Read all admin report settings",
"FullDescription": "Allows the app to read all admin report settings, such as whether to display concealed information in reports, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ReportSettings.ReadWrite.All",
"Description": "Read and write all admin report settings",
"FullDescription": "Allows the app to read and update all admin report settings, such as whether to display concealed information in reports, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdminReportSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminReportSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminReportSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/adminreportsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/sharepoint",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/sharepoint",
"OutputType": "IMicrosoftGraphSharepoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminSharepoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminSharepoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/sharepoint/settings",
"Module": "Beta.Sites",
+ "Uri": "/admin/sharepoint/settings",
+ "OutputType": "IMicrosoftGraphSharepointSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SharePointTenantSettings.Read.All",
"Description": "Read SharePoint and OneDrive tenant settings",
"FullDescription": "Allows the application to read the tenant-level settings of SharePoint and OneDrive, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SharePointTenantSettings.ReadWrite.All",
"Description": "Read and change SharePoint and OneDrive tenant settings",
"FullDescription": "Allows the application to read and change the tenant-level settings of SharePoint and OneDrive, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSharepointSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAdminSharepointSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaAdminSharepointSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharepointsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Agreement.Read.All",
- "Description": "Read all terms of use agreements",
- "FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreement"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreement"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementAcceptance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/acceptances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/acceptances",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementAcceptance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreement-list-acceptances?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/acceptances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/acceptances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementAcceptanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementAcceptanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file",
"Module": "Beta.Identity.Governance",
+ "Uri": "/agreements/{agreement-id}/file",
+ "OutputType": "IMicrosoftGraphAgreementFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Agreement.Read.All",
"Description": "Read all terms of use agreements",
"FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Agreement.ReadWrite.All",
"Description": "Read and write all terms of use agreements",
"FullDescription": "Allows the app to read and write terms of use agreements on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAgreementFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-get?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/files",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/files",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileLocalizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileLocalizationVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileLocalizationVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAgreementFileVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAgreementFileVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/getAllSites",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/getAllSites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllGroupSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllGroupSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/allChannels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/allChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllGroupTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/allChannels",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/allChannels",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAllGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllGroupTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-allchannels?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/allChannels/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/allChannels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllGroupTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllGroupTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/getAllSites",
"Module": "Beta.Sites",
+ "Uri": "/sites/getAllSites",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"Get2"
],
- "Command": "Get-MgBetaAllSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/allChannels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/allChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/allChannels",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/allChannels",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAllTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-allchannels?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/allChannels/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/allChannels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/getAllMessages",
"Module": "Beta.Teams",
+ "Uri": "/teams/getAllMessages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAllTeamMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllTeamMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/getAllMessages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/getAllMessages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAllTeamworkDeletedTeamMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllTeamworkDeletedTeamMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/chats/getAllMessages",
"Module": "Beta.Users.Functions",
+ "Uri": "/users/{user-id}/chats/getAllMessages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read.All",
"Description": "Read all chat messages",
"FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllUserChatMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllUserChatMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/onlineMeetings/getAllRecordings",
"Module": "Beta.Users.Functions",
- "Permissions": [
- {
- "Name": "OnlineMeetings.Read",
- "Description": "Read your online meetings",
- "FullDescription": "Allows the app to read online meeting details on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.Read.All",
- "Description": "Read online meeting details",
- "FullDescription": "Allows the app to read online meeting details in your organization, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.ReadWrite",
- "Description": "Read and create your online meetings",
- "FullDescription": "Allows the app to read and create online meetings on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.ReadWrite.All",
- "Description": "Read and create online meetings",
- "FullDescription": "Allows the app to read and create online meetings as an application in your organization.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/onlineMeetings/getAllRecordings",
"OutputType": "IMicrosoftGraphCallRecording",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllUserOnlineMeetingRecording"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllUserOnlineMeetingRecording",
+ "ApiReferenceLink": null
},
{
- "Uri": "/users/{user-id}/onlineMeetings/getAllTranscripts",
"Module": "Beta.Users.Functions",
- "Permissions": [
- {
- "Name": "OnlineMeetings.Read",
- "Description": "Read your online meetings",
- "FullDescription": "Allows the app to read online meeting details on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.Read.All",
- "Description": "Read online meeting details",
- "FullDescription": "Allows the app to read online meeting details in your organization, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.ReadWrite",
- "Description": "Read and create your online meetings",
- "FullDescription": "Allows the app to read and create online meetings on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "OnlineMeetings.ReadWrite.All",
- "Description": "Read and create online meetings",
- "FullDescription": "Allows the app to read and create online meetings as an application in your organization.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
+ "Uri": "/users/{user-id}/onlineMeetings/getAllTranscripts",
"OutputType": "IMicrosoftGraphCallTranscript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAllUserOnlineMeetingTranscript"
+ "Method": "GET",
+ "Command": "Get-MgBetaAllUserOnlineMeetingTranscript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps",
+ "OutputType": "IMicrosoftGraphTeamsApp",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "AppCatalog.Submit",
+ "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
+ "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AppCatalog.Submit",
- "Description": "Submit application packages to your organization's catalog and cancel pending submissions",
- "FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAppCatalogTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appcatalogs-list-teamsapps?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/$count",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AppCatalog.Read.All",
- "Description": "Read all app catalogs",
- "FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "AppCatalog.Read.All",
+ "Description": "Read all app catalogs",
+ "FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAppCatalogTeamAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionBot"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionBot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkbot-get?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon",
+ "OutputType": "IMicrosoftGraphTeamsAppIcon",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppIcon",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIcon"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIcon",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamsappicon-get?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent",
+ "OutputType": "IMicrosoftGraphTeamworkHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkHostedContent",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}",
"OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards",
"OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCardCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCardCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon",
+ "OutputType": "IMicrosoftGraphTeamsAppIcon",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppIcon",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIcon"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIcon",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamsappicon-get?view=graph-rest-1.0"
},
{
- "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent",
"Module": "Beta.Teams",
+ "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent",
+ "OutputType": "IMicrosoftGraphTeamworkHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AppCatalog.Read.All",
"Description": "Read all app catalogs",
"FullDescription": "Allows the app to read apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "AppCatalog.ReadWrite.All",
- "Description": "Read and write to all app catalogs",
- "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AppCatalog.Submit",
"Description": "Submit application packages to your organization's catalog and cancel pending submissions",
"FullDescription": "Allows the app to submit application packages to the catalog and cancel submissions that are pending review on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppCatalog.ReadWrite.All",
+ "Description": "Read and write to all app catalogs",
+ "FullDescription": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkHostedContent",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications",
"Module": "Beta.Applications",
+ "Uri": "/applications",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/appManagementPolicies",
"OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationAppManagementPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/appManagementPolicies/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationAppManagementPolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationAppManagementPolicyByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/appManagementPolicies/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/appManagementPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationAppManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationAppManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications(appId='{appId}')",
"Module": "Beta.Applications",
+ "Uri": "/applications(appId='{appId}')",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationByAppId"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationByAppId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/getByIds",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaApplicationById"
+ "Method": "POST",
+ "Command": "Get-MgBetaApplicationById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/applications(uniqueName='{uniqueName}')",
"Module": "Beta.Applications",
+ "Uri": "/applications(uniqueName='{uniqueName}')",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationByUniqueName"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationByUniqueName",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/connectorGroup",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/connectorGroup",
"OutputType": "IMicrosoftGraphConnectorGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationConnectorGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationConnectorGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/connectorGroup/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/connectorGroup/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationConnectorGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationConnectorGroupByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/createdOnBehalfOf",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/createdOnBehalfOf",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationCreatedOnBehalfOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationCreatedOnBehalfOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/delta",
"Module": "Beta.Applications",
+ "Uri": "/applications/delta",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaApplicationDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}",
+ "OutputType": "IMicrosoftGraphExtensionProperty",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExtensionProperty",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationExtensionProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationExtensionProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/extensionProperties",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/extensionProperties",
+ "OutputType": "IMicrosoftGraphExtensionProperty",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExtensionProperty",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationExtensionProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationExtensionProperty",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/extensionProperties/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/extensionProperties/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationExtensionPropertyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationExtensionPropertyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}",
+ "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationFederatedIdentityCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationFederatedIdentityCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials",
+ "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationFederatedIdentityCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationFederatedIdentityCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-federatedidentitycredentials?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')",
+ "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphFederatedIdentityCredential",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationFederatedIdentityCredentialByName"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationFederatedIdentityCredentialByName",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationFederatedIdentityCredentialCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationFederatedIdentityCredentialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
"OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies",
"OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/logo",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/logo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationLogo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/getMemberGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaApplicationMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaApplicationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/getMemberObjects",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaApplicationMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaApplicationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/owners",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/user",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/$ref",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/owners/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationOwnerByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/owners/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/owners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/endpoint/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/servicePrincipal/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/owners/user/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/owners/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationOwnerCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationOwnerCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization",
"OutputType": "IMicrosoftGraphSynchronization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/acquireAccessToken",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/synchronization/acquireAccessToken",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Acquire",
"AcquireExpanded",
"AcquireViaIdentity",
"AcquireViaIdentityExpanded"
],
- "Command": "Get-MgBetaApplicationSynchronizationAccessToken"
+ "Method": "POST",
+ "Command": "Get-MgBetaApplicationSynchronizationAccessToken",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}",
"OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs",
"OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobBulkUpload"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobBulkUpload",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobBulkUploadContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobBulkUploadContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema",
"OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobSchema",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/secrets/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/secrets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationSecretCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationSecretCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
+ "OutputType": "IMicrosoftGraphSynchronizationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplateSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplateSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applicationTemplates/{applicationTemplate-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applicationTemplates/{applicationTemplate-id}",
"OutputType": "IMicrosoftGraphApplicationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/applicationTemplates",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applicationTemplates",
"OutputType": "IMicrosoftGraphApplicationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0"
},
{
- "Uri": "/applicationTemplates/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applicationTemplates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaApplicationTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies",
+ "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenIssuancePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationTokenIssuancePolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenIssuancePolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationTokenIssuancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenIssuancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies",
+ "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenLifetimePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaApplicationTokenLifetimePolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenLifetimePolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count",
"Module": "Beta.Applications",
+ "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaApplicationTokenLifetimePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaApplicationTokenLifetimePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/applications/getUserOwnedObjects",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/applications/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaApplicationUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaApplicationUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/customSecurityAttributeAudits/{customSecurityAttributeAudit-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/customSecurityAttributeAudits/{customSecurityAttributeAudit-id}",
"OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/customSecurityAttributeAudits",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/customSecurityAttributeAudits",
"OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/auditlogroot-list-customsecurityattributeaudits?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/customSecurityAttributeAudits/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/customSecurityAttributeAudits/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAuditCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAuditCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}",
+ "OutputType": "IMicrosoftGraphDirectoryAudit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryAudit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAuditLogDirectoryAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryAudit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryaudit-get?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/directoryAudits",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/directoryAudits",
+ "OutputType": "IMicrosoftGraphDirectoryAudit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryAudit",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAuditLogDirectoryAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryAudit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryaudit-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/directoryAudits/$count",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/directoryAudits/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAuditLogDirectoryAuditCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryAuditCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}",
"OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAuditLogDirectoryProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryProvisioning",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/directoryProvisioning",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/directoryProvisioning",
"OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaAuditLogDirectoryProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryProvisioning",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/directoryProvisioning/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/directoryProvisioning/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAuditLogDirectoryProvisioningCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogDirectoryProvisioningCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}",
"OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAuditLogProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogProvisioning",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/provisioning",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/provisioning",
+ "OutputType": "IMicrosoftGraphProvisioningObjectSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProvisioningObjectSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAuditLogProvisioning"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogProvisioning",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/provisioningobjectsummary-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/provisioning/$count",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/provisioning/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAuditLogProvisioningCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogProvisioningCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/auditLogs/signIns/{signIn-id}",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/signIns/{signIn-id}",
+ "OutputType": "IMicrosoftGraphSignIn",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSignIn",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaAuditLogSignIn"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-get?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/signIns",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/signIns",
+ "OutputType": "IMicrosoftGraphSignIn",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSignIn",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaAuditLogSignIn"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogSignIn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-list?view=graph-rest-1.0"
},
{
- "Uri": "/auditLogs/signIns/$count",
"Module": "Beta.Reports",
+ "Uri": "/auditLogs/signIns/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaAuditLogSignInCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaAuditLogSignInCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}",
+ "OutputType": "IMicrosoftGraphBookingBusiness",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingBusiness",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusiness"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusiness",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses",
+ "OutputType": "IMicrosoftGraphBookingBusiness",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingBusiness",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusiness"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusiness",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}",
+ "OutputType": "IMicrosoftGraphBookingAppointment",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingAppointment",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessAppointment"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessAppointment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-get?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments",
+ "OutputType": "IMicrosoftGraphBookingAppointment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingAppointment",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessAppointment"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessAppointment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-appointments?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessAppointmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessAppointmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}",
"Module": "Beta.Bookings",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}",
"OutputType": "IMicrosoftGraphBookingAppointment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCalendarView"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCalendarView",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView",
+ "OutputType": "IMicrosoftGraphBookingAppointment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingAppointment",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessCalendarView"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCalendarView",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-calendarview?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCalendarViewCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCalendarViewCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1"
],
- "Command": "Get-MgBetaBookingBusinessCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}",
+ "OutputType": "IMicrosoftGraphBookingCustomer",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCustomer",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingcustomer-get?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers",
+ "OutputType": "IMicrosoftGraphBookingCustomer",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCustomer",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-customers?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCustomerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}",
+ "OutputType": "IMicrosoftGraphBookingCustomQuestion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCustomQuestion",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCustomQuestion"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomQuestion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingcustomquestion-get?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions",
+ "OutputType": "IMicrosoftGraphBookingCustomQuestion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCustomQuestion",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessCustomQuestion"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomQuestion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-customquestions?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessCustomQuestionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessCustomQuestionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}",
+ "OutputType": "IMicrosoftGraphBookingService",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingService",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessService"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessService",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingservice-get?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/services",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/services",
+ "OutputType": "IMicrosoftGraphBookingService",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingService",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessService"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessService",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-services?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessServiceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessServiceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability",
+ "OutputType": "IMicrosoftGraphStaffAvailabilityItem",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Bookings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Calendars.ReadWrite",
+ "Description": "Read and write calendars in all mailboxes",
+ "FullDescription": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Calendars.Read",
"Description": "Read calendars in all mailboxes",
"FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calendars.ReadWrite",
- "Description": "Read and write calendars in all mailboxes",
- "FullDescription": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.",
- "IsAdmin": false
+ "Name": "Bookings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Bookings.Manage.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphStaffAvailabilityItem",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaBookingBusinessStaffAvailability"
+ "Method": "POST",
+ "Command": "Get-MgBetaBookingBusinessStaffAvailability",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}",
+ "OutputType": "IMicrosoftGraphBookingStaffMember",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingStaffMember",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessStaffMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessStaffMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingstaffmember-get?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers",
+ "OutputType": "IMicrosoftGraphBookingStaffMember",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingStaffMember",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingBusinessStaffMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessStaffMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-list-staffmembers?view=graph-rest-1.0"
},
{
- "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Bookings.Manage.All",
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write all Bookings related resources.",
+ "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Bookings.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.Read.All",
"Description": "Read all Bookings related resources.",
"FullDescription": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Bookings.ReadWrite.All",
+ "Name": "Bookings.Manage.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write all Bookings related resources.",
- "FullDescription": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingBusinessStaffMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingBusinessStaffMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingCurrencies/{bookingCurrency-id}",
"Module": "Beta.Bookings",
+ "Uri": "/bookingCurrencies/{bookingCurrency-id}",
+ "OutputType": "IMicrosoftGraphBookingCurrency",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Manage bookings information",
- "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read bookings information",
"FullDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Read and write bookings information",
"FullDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Manage bookings information",
+ "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCurrency",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaBookingCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingCurrencies",
"Module": "Beta.Bookings",
+ "Uri": "/bookingCurrencies",
+ "OutputType": "IMicrosoftGraphBookingCurrency",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Manage bookings information",
- "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read bookings information",
"FullDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Read and write bookings information",
"FullDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Manage bookings information",
+ "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBookingCurrency",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaBookingCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/bookingCurrencies/$count",
"Module": "Beta.Bookings",
+ "Uri": "/bookingCurrencies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Bookings.Manage.All",
- "Description": "Manage bookings information",
- "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
- },
{
"Name": "Bookings.Read.All",
"Description": "Read bookings information",
"FullDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BookingsAppointment.ReadWrite.All",
+ "Description": "Read and write booking appointments",
+ "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Bookings.ReadWrite.All",
"Description": "Read and write bookings information",
"FullDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BookingsAppointment.ReadWrite.All",
- "Description": "Read and write booking appointments",
- "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.",
- "IsAdmin": false
+ "Name": "Bookings.Manage.All",
+ "Description": "Manage bookings information",
+ "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1"
],
- "Command": "Get-MgBetaBookingCurrencyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBookingCurrencyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}",
"OutputType": "IMicrosoftGraphBusinessFlowTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessFlowTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessFlowTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/businessFlowTemplates",
"Module": "Beta.Identity.Governance",
+ "Uri": "/businessFlowTemplates",
+ "OutputType": "IMicrosoftGraphBusinessFlowTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessFlowTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaBusinessFlowTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessFlowTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessflowtemplate-list?view=graph-rest-1.0"
},
{
- "Uri": "/businessFlowTemplates/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/businessFlowTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage access reviews that you can access",
"FullDescription": "Allows the app to read, update and perform action on access reviews, reviewers, decisions and settings that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "AccessReview.ReadWrite.Membership",
"Description": "Manage access reviews for group and app memberships",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaBusinessFlowTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessFlowTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}",
+ "OutputType": "IMicrosoftGraphBusinessScenario",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenario",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenario"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenario",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenario-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios",
+ "OutputType": "IMicrosoftGraphBusinessScenario",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenario",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaBusinessScenario"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenario",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/solutionsroot-list-businessscenarios?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')",
+ "OutputType": "IMicrosoftGraphBusinessScenario",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenario",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioByUniqueName"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioByUniqueName",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenario-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/$count",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaBusinessScenarioCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner",
+ "OutputType": "IMicrosoftGraphBusinessScenarioPlanner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenarioPlanner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlanner"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlanner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/getPlan",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/getPlan",
+ "OutputType": "IMicrosoftGraphBusinessScenarioPlanReference",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BusinessScenarioData.Read.OwnedBy",
"Description": "Read data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BusinessScenarioData.ReadWrite.OwnedBy",
"Description": "Read and write data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenarioPlanReference",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerPlan"
+ "Method": "POST",
+ "Command": "Get-MgBetaBusinessScenarioPlannerPlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-getplan?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration",
+ "OutputType": "IMicrosoftGraphPlannerPlanConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlanConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplanconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}",
+ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplanconfigurationlocalization-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations",
+ "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplanconfiguration-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/$count",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}",
+ "OutputType": "IMicrosoftGraphBusinessScenarioTask",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BusinessScenarioData.Read.OwnedBy",
"Description": "Read data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BusinessScenarioData.ReadWrite.OwnedBy",
"Description": "Read and write data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenarioTask",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenariotask-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks",
+ "OutputType": "IMicrosoftGraphBusinessScenarioTask",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BusinessScenarioData.Read.OwnedBy",
"Description": "Read data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BusinessScenarioData.ReadWrite.OwnedBy",
"Description": "Read and write data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBusinessScenarioTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat",
"Module": "Beta.Bookings",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat",
"OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat",
"Module": "Beta.Bookings",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat",
"OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration",
+ "OutputType": "IMicrosoftGraphPlannerTaskConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "BusinessScenarioConfig.Read.All",
- "Description": "Read business scenario configurations",
- "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "BusinessScenarioConfig.Read.OwnedBy",
"Description": "Read business scenario configurations this app creates or owns",
"FullDescription": "Allows the app to read the configurations of business scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
+ "Description": "Read and write business scenario configurations this app creates or owns",
+ "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "BusinessScenarioConfig.ReadWrite.All",
"Description": "Read and write business scenario configurations",
"FullDescription": "Allows the app to read and write the configurations of your organization's business scenarios, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy",
- "Description": "Read and write business scenario configurations this app creates or owns",
- "FullDescription": "Allows the app to create new business scenarios and fully manage the configurations of scenarios it owns, on your behalf.",
- "IsAdmin": true
+ "Name": "BusinessScenarioConfig.Read.All",
+ "Description": "Read business scenario configurations",
+ "FullDescription": "Allows the app to read the configurations of your organization's business scenarios, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTaskConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertaskconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/$count",
"Module": "Beta.Bookings",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "BusinessScenarioData.Read.OwnedBy",
"Description": "Read data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to read the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "BusinessScenarioData.ReadWrite.OwnedBy",
"Description": "Read and write data for all business scenarios this app creates or owns",
"FullDescription": "Allows the app to fully manage the data associated with the business scenarios it owns, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details",
"Module": "Beta.Bookings",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details",
"OutputType": "IMicrosoftGraphPlannerTaskDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertaskdetails-get?view=graph-rest-1.0"
},
{
- "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat",
"Module": "Beta.Bookings",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat",
"OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}",
+ "OutputType": "IMicrosoftGraphChat",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
{
"Name": "Chat.ReadBasic",
"Description": "Read names and members of your chat threads",
"FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChatSettings.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "ChatSettings.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.ReadWrite.Chat",
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChat"
+ "Method": "GET",
+ "Command": "Get-MgBetaChat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats",
"Module": "Beta.Teams",
+ "Uri": "/chats",
+ "OutputType": "IMicrosoftGraphChat",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
{
"Name": "Chat.ReadBasic",
"Description": "Read names and members of your chat threads",
"FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChat",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChat"
+ "Method": "GET",
+ "Command": "Get-MgBetaChat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-1.0"
},
{
- "Uri": "/chats/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
{
"Name": "Chat.ReadBasic",
"Description": "Read names and members of your chat threads",
"FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaChatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}",
+ "OutputType": "IMicrosoftGraphTeamsAppInstallation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "TeamsAppInstallation.ReadForChat",
"Description": "Read installed Teams apps in chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.ReadForChat.All",
"Description": "Read installed Teams apps for all chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage itself in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat",
"Description": "Manage installed Teams apps in chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat.All",
"Description": "Manage Teams apps for all chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage itself in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage itself for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/installedApps",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/installedApps",
+ "OutputType": "IMicrosoftGraphTeamsAppInstallation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "TeamsAppInstallation.ReadForChat",
"Description": "Read installed Teams apps in chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.ReadForChat.All",
"Description": "Read installed Teams apps for all chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat",
- "Description": "Manage installation and permission grants of Teams apps in chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage itself in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat.All",
- "Description": "Manage installation and permission grants of Teams apps for all chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Gives the ability to manage permission grants for accessing those specific chats' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForChat",
+ "Description": "Manage installed Teams apps in chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat",
"Description": "Allow the Teams app to manage itself and its permission grants in chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats the signed-in user can access, and manage its permission grants for accessing those specific chats' data.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat.All",
- "Description": "Allow the Teams app to manage itself and its permission grants for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user, and manage its permission grants for accessing those specific chats' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat",
+ "Description": "Manage installation and permission grants of Teams apps in chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForChat",
- "Description": "Manage installed Teams apps in chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat.All",
"Description": "Manage Teams apps for all chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage itself in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself and its permission grants for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user, and manage its permission grants for accessing those specific chats' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage itself for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat.All",
+ "Description": "Manage installation and permission grants of Teams apps for all chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Gives the ability to manage permission grants for accessing those specific chats' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/installedApps/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/installedApps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
{
"Name": "TeamsAppInstallation.ReadForChat",
"Description": "Read installed Teams apps in chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.ReadForChat.All",
"Description": "Read installed Teams apps for all chats",
"FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat",
- "Description": "Manage installation and permission grants of Teams apps in chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage itself in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat.All",
- "Description": "Manage installation and permission grants of Teams apps for all chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Gives the ability to manage permission grants for accessing those specific chats' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForChat",
+ "Description": "Manage installed Teams apps in chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat",
"Description": "Allow the Teams app to manage itself and its permission grants in chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats the signed-in user can access, and manage its permission grants for accessing those specific chats' data.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat.All",
- "Description": "Allow the Teams app to manage itself and its permission grants for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user, and manage its permission grants for accessing those specific chats' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat",
+ "Description": "Manage installation and permission grants of Teams apps in chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats the signed-in user can access. Gives the ability to manage permission grants for accessing those specific chats' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForChat",
- "Description": "Manage installed Teams apps in chats",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat.All",
"Description": "Manage Teams apps for all chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage itself in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself and its permission grants for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user, and manage its permission grants for accessing those specific chats' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage itself for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForChat.All",
+ "Description": "Manage installation and permission grants of Teams apps for all chats",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Gives the ability to manage permission grants for accessing those specific chats' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatInstalledAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatInstalledAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatInstalledAppTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatInstalledAppTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatInstalledAppTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatInstalledAppTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/lastMessagePreview",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/lastMessagePreview",
"OutputType": "IMicrosoftGraphChatMessageInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatLastMessagePreview"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatLastMessagePreview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/members/{conversationMember-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/members/{conversationMember-id}",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ChannelMember.Read.All",
- "Description": "Read the members of all channels",
- "FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelMember.ReadWrite",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "ChatMember.Read.All",
+ "Description": "Read the members of all chats",
+ "FullDescription": "Read the members of all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelMember.ReadWrite.All",
- "Description": "Add and remove members from all channels",
- "FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite",
+ "Description": "Add and remove members from chats",
+ "FullDescription": "Add and remove members from chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "ChatMember.Read",
+ "Description": "Read the members of chats",
+ "FullDescription": "Read the members of chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChannelMember.ReadWrite",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "TeamMember.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic.All",
- "Description": "Read names and members of all chat threads",
- "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite.All",
+ "Description": "Add and remove members from all chats",
+ "FullDescription": "Add and remove members from all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "Name": "ChatMember.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read",
- "Description": "Read the members of chats",
- "FullDescription": "Read the members of chats, on your behalf.",
- "IsAdmin": true
+ "Name": "Chat.ReadBasic.All",
+ "Description": "Read names and members of all chat threads",
+ "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read.All",
- "Description": "Read the members of all chats",
- "FullDescription": "Read the members of all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read.Chat",
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ChatMember.ReadWrite",
- "Description": "Add and remove members from chats",
- "FullDescription": "Add and remove members from chats, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.ReadWrite.All",
- "Description": "Add and remove members from all chats",
- "FullDescription": "Add and remove members from all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMember.ReadWrite.All",
+ "Description": "Add and remove members from all channels",
+ "FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamMember.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "ChannelMember.Read.All",
+ "Description": "Read the members of all channels",
+ "FullDescription": "Read the members of all channels, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/members",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/members",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMember.Read.All",
+ "Description": "Read the members of all chats",
+ "FullDescription": "Read the members of all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite",
+ "Description": "Add and remove members from chats",
+ "FullDescription": "Add and remove members from chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic.All",
- "Description": "Read names and members of all chat threads",
- "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChatMember.Read",
+ "Description": "Read the members of chats",
+ "FullDescription": "Read the members of chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite.All",
- "Description": "Read and write all chat messages",
- "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read",
- "Description": "Read the members of chats",
- "FullDescription": "Read the members of chats, on your behalf.",
- "IsAdmin": true
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read.All",
- "Description": "Read the members of all chats",
- "FullDescription": "Read the members of all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite.All",
+ "Description": "Add and remove members from all chats",
+ "FullDescription": "Add and remove members from all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "ChatMember.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.ReadWrite",
- "Description": "Add and remove members from chats",
- "FullDescription": "Add and remove members from chats, on your behalf.",
- "IsAdmin": true
+ "Name": "Chat.ReadWrite.All",
+ "Description": "Read and write all chat messages",
+ "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.ReadWrite.All",
- "Description": "Add and remove members from all chats",
- "FullDescription": "Add and remove members from all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic.All",
+ "Description": "Read names and members of all chat threads",
+ "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/members/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMember.Read.All",
+ "Description": "Read the members of all chats",
+ "FullDescription": "Read the members of all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite",
+ "Description": "Add and remove members from chats",
+ "FullDescription": "Add and remove members from chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic.All",
- "Description": "Read names and members of all chat threads",
- "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChatMember.Read",
+ "Description": "Read the members of chats",
+ "FullDescription": "Read the members of chats, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite.All",
- "Description": "Read and write all chat messages",
- "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read",
- "Description": "Read the members of chats",
- "FullDescription": "Read the members of chats, on your behalf.",
- "IsAdmin": true
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.Read.All",
- "Description": "Read the members of all chats",
- "FullDescription": "Read the members of all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChatMember.ReadWrite.All",
+ "Description": "Add and remove members from all chats",
+ "FullDescription": "Add and remove members from all chats, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "ChatMember.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.ReadWrite",
- "Description": "Add and remove members from chats",
- "FullDescription": "Add and remove members from chats, on your behalf.",
- "IsAdmin": true
+ "Name": "Chat.ReadWrite.All",
+ "Description": "Read and write all chat messages",
+ "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMember.ReadWrite.All",
- "Description": "Add and remove members from all chats",
- "FullDescription": "Add and remove members from all chats, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic.All",
+ "Description": "Read names and members of all chat threads",
+ "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ChatMessage.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMessage.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMessage.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMessage.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMessage.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/delta",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/delta",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ChatMessage.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaChatMessageDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMessage.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChatMessage.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaChatMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMessage.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChatMessage.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatMessage.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChatMessage.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaChatMessageReplyDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReplyDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaChatMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}",
+ "OutputType": "IMicrosoftGraphTeamsAsyncOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ChatSettings.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatSettings.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "Chat.ReadWrite.All",
+ "Description": "Read and write all chat messages",
+ "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite.All",
- "Description": "Read and write all chat messages",
- "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.ReadWrite.Chat",
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamsasyncoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/operations",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/operations",
+ "OutputType": "IMicrosoftGraphTeamsAsyncOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ChatSettings.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic.All",
- "Description": "Read names and members of all chat threads",
- "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "Name": "ChatSettings.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Chat.ReadBasic.All",
+ "Description": "Read names and members of all chat threads",
+ "FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.ReadWrite.Chat",
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/operations/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
+ "Name": "Chat.ReadBasic",
+ "Description": "Read names and members of your chat threads",
+ "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ChatSettings.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Chat.ReadWrite",
+ "Description": "Read and write your chat messages",
+ "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "Name": "ChatSettings.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Chat.ReadBasic",
- "Description": "Read names and members of your chat threads",
- "FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "Name": "Chat.ReadWrite.All",
+ "Description": "Read and write all chat messages",
+ "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite",
- "Description": "Read and write your chat messages",
- "FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.ReadWrite.All",
- "Description": "Read and write all chat messages",
- "FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.ReadWrite.Chat",
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPermissionGrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/permissionGrants",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/permissionGrants",
+ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ResourceSpecificPermissionGrant.ReadForChat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ResourceSpecificPermissionGrant.ReadForChat.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForChat",
+ "Description": "Read installed Teams apps in chats",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForChat",
- "Description": "Read installed Teams apps in chats",
- "FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.ReadForChat.All",
- "Description": "Read installed Teams apps for all chats",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage itself in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat",
"Description": "Manage installed Teams apps in chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ResourceSpecificPermissionGrant.ReadForChat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat.All",
"Description": "Manage Teams apps for all chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage itself in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadForChat.All",
+ "Description": "Read installed Teams apps for all chats",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage itself for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ResourceSpecificPermissionGrant.ReadForChat.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/permissionGrants/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/permissionGrants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ResourceSpecificPermissionGrant.ReadForChat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ResourceSpecificPermissionGrant.ReadForChat.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForChat",
+ "Description": "Read installed Teams apps in chats",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.ReadForChat",
- "Description": "Read installed Teams apps in chats",
- "FullDescription": "Allows the app to read the Teams apps that are installed in chats that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForChat.All",
- "Description": "Read installed Teams apps for all chats",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage itself in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat",
"Description": "Manage installed Teams apps in chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in chats you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ResourceSpecificPermissionGrant.ReadForChat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage itself for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForChat.All",
"Description": "Manage Teams apps for all chats",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage itself in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadForChat.All",
+ "Description": "Read installed Teams apps for all chats",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any chat, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage itself for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ResourceSpecificPermissionGrant.ReadForChat.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatPermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}",
"OutputType": "IMicrosoftGraphPinnedChatMessageInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaChatPinnedMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPinnedMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/pinnedMessages",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/pinnedMessages",
+ "OutputType": "IMicrosoftGraphPinnedChatMessageInfo",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
+ "Name": "ChatMessage.Read.All",
"Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "FullDescription": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMessage.Read.All",
+ "Name": "Chat.Read.All",
"Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPinnedChatMessageInfo",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatPinnedMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPinnedMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-pinnedmessages?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/pinnedMessages/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/pinnedMessages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Chat.Read",
"Description": "Read your chat messages",
"FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Chat.Read.All",
+ "Name": "ChatMessage.Read.All",
"Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
+ "FullDescription": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Chat.ReadWrite.All",
"Description": "Read and write all chat messages",
"FullDescription": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatMessage.Read.All",
+ "Name": "Chat.Read.All",
"Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all one-to-one and group chats messages in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatPinnedMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatPinnedMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/getAllRetainedMessages",
"Module": "Beta.Teams",
+ "Uri": "/chats/getAllRetainedMessages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Chat.Manage.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read",
- "Description": "Read your chat messages",
- "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Chat.Read.All",
- "Description": "Read all chat messages",
- "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
- "IsAdmin": false
- },
{
"Name": "Chat.ReadBasic",
"Description": "Read names and members of your chat threads",
"FullDescription": "Allows an app to read the members and descriptions of one-to-one and group chat threads, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadBasic.All",
"Description": "Read names and members of all chat threads",
"FullDescription": "Read names and members of all one-to-one and group chats in Microsoft Teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Chat.ReadWrite",
"Description": "Read and write your chat messages",
"FullDescription": "Allows an app to read and write your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Read",
+ "Description": "Read your chat messages",
+ "FullDescription": "Allows an app to read your 1 on 1 or group chat messages in Microsoft Teams, on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChatSettings.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "ChatSettings.Read.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChatSettings.ReadWrite.Chat",
+ "Name": "Chat.Read.All",
+ "Description": "Read all chat messages",
+ "FullDescription": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Chat.Manage.Chat",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaChatRetainedMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatRetainedMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}",
+ "OutputType": "IMicrosoftGraphTeamsTab",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamsTab.Read.All",
"Description": "Read tabs in Microsoft Teams.",
"FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
- },
- {
- "Name": "TeamsTab.Read.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsTab.ReadWrite.All",
- "Description": "Read and write tabs in Microsoft Teams.",
- "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsTab.ReadWrite.Chat",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage only its own tabs in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat",
"Description": "Allow the Teams app to manage all tabs in chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in chats you can access.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsTab.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat.All",
"Description": "Allow the Teams app to manage all tabs for all chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for any chat, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage only its own tabs in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
- "IsAdmin": true
+ "Name": "TeamsTab.ReadWrite.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage only its own tabs for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWrite.All",
+ "Description": "Read and write tabs in Microsoft Teams.",
+ "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsTab.Read.Chat",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/tabs",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/tabs",
+ "OutputType": "IMicrosoftGraphTeamsTab",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamsTab.Read.All",
"Description": "Read tabs in Microsoft Teams.",
"FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsTab.ReadWrite.All",
- "Description": "Read and write tabs in Microsoft Teams.",
- "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage only its own tabs in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat",
"Description": "Allow the Teams app to manage all tabs in chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in chats you can access.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsTab.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat.All",
"Description": "Allow the Teams app to manage all tabs for all chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for any chat, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "TeamsTab.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage only its own tabs in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage only its own tabs for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWrite.All",
+ "Description": "Read and write tabs in Microsoft Teams.",
+ "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaChatTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/chats/{chat-id}/tabs/$count",
"Module": "Beta.Teams",
+ "Uri": "/chats/{chat-id}/tabs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamsTab.Read.All",
"Description": "Read tabs in Microsoft Teams.",
"FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsTab.ReadWrite.All",
- "Description": "Read and write tabs in Microsoft Teams.",
- "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForChat",
+ "Description": "Allow the Teams app to manage only its own tabs in chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat",
"Description": "Allow the Teams app to manage all tabs in chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in chats you can access.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsTab.ReadWriteSelfForChat.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all chats",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWriteForChat.All",
"Description": "Allow the Teams app to manage all tabs for all chats",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs for any chat, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "TeamsTab.ReadWriteSelfForChat",
- "Description": "Allow the Teams app to manage only its own tabs in chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in chats you can access.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForChat.All",
- "Description": "Allow the Teams app to manage only its own tabs for all chats",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWrite.All",
+ "Description": "Read and write tabs in Microsoft Teams.",
+ "FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaChatTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaChatTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/{call-id}",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}",
+ "OutputType": "IMicrosoftGraphCall",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.AccessMedia.All",
- "Description": "Access media streams in a call as an app",
- "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.Initiate.All",
"Description": "Initiate outgoing 1 to 1 calls from the app",
"FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.AccessMedia.All",
+ "Description": "Access media streams in a call as an app",
+ "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCall",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCall"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCall",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}",
+ "OutputType": "IMicrosoftGraphAudioRoutingGroup",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAudioRoutingGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/audioRoutingGroups",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/audioRoutingGroups",
+ "OutputType": "IMicrosoftGraphAudioRoutingGroup",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAudioRoutingGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/audioRoutingGroups/$count",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/audioRoutingGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallAudioRoutingGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallAudioRoutingGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Calls.Initiate.All",
- "Description": "Initiate outgoing 1 to 1 calls from the app",
- "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Calls.JoinGroupCallAsGuest.All",
+ "Description": "Join group calls and meetings as a guest",
+ "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calls.JoinGroupCallAsGuest.All",
- "Description": "Join group calls and meetings as a guest",
- "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
- "IsAdmin": false
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Calls.Initiate.All",
+ "Description": "Initiate outgoing 1 to 1 calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallContentSharingSession"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallContentSharingSession",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/contentSharingSessions",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/contentSharingSessions",
+ "OutputType": "IMicrosoftGraphContentSharingSession",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Calls.Initiate.All",
- "Description": "Initiate outgoing 1 to 1 calls from the app",
- "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Calls.JoinGroupCallAsGuest.All",
+ "Description": "Join group calls and meetings as a guest",
+ "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calls.JoinGroupCallAsGuest.All",
- "Description": "Join group calls and meetings as a guest",
- "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
- "IsAdmin": false
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Calls.Initiate.All",
+ "Description": "Initiate outgoing 1 to 1 calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentSharingSession",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallContentSharingSession"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallContentSharingSession",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/contentSharingSessions/$count",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/contentSharingSessions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Calls.Initiate.All",
- "Description": "Initiate outgoing 1 to 1 calls from the app",
- "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Calls.InitiateGroupCall.All",
- "Description": "Initiate outgoing group calls from the app",
- "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Calls.JoinGroupCallAsGuest.All",
+ "Description": "Join group calls and meetings as a guest",
+ "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Calls.JoinGroupCallAsGuest.All",
- "Description": "Join group calls and meetings as a guest",
- "FullDescription": "Allows the app to anonymously join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined as a guest to meetings in your organization.",
- "IsAdmin": false
+ "Name": "Calls.InitiateGroupCall.All",
+ "Description": "Initiate outgoing group calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to multiple users and add participants to meetings in your organization, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Calls.Initiate.All",
+ "Description": "Initiate outgoing 1 to 1 calls from the app",
+ "FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallContentSharingSessionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallContentSharingSessionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/calls/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaCommunicationCallCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}",
"OutputType": "IMicrosoftGraphCommsOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/operations",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/calls/{call-id}/operations",
"OutputType": "IMicrosoftGraphCommsOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/{call-id}/operations/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/calls/{call-id}/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/calls/{call-id}/participants/{participant-id}",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/participants/{participant-id}",
+ "OutputType": "IMicrosoftGraphParticipant",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Calls.JoinGroupCall.All",
"Description": "Join group calls and meetings as an app",
"FullDescription": "Allows the app to join group calls and scheduled meetings in your organization, without a signed-in user. The app will be joined with the privileges of a directory user to meetings in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calls.JoinGroupCallasGuest.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphParticipant",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallParticipant"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallParticipant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/participants",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/participants",
+ "OutputType": "IMicrosoftGraphParticipant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.AccessMedia.All",
- "Description": "Access media streams in a call as an app",
- "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.Initiate.All",
"Description": "Initiate outgoing 1 to 1 calls from the app",
"FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.AccessMedia.All",
+ "Description": "Access media streams in a call as an app",
+ "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphParticipant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallParticipant"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallParticipant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-1.0"
},
{
- "Uri": "/communications/calls/{call-id}/participants/$count",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/calls/{call-id}/participants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calls.AccessMedia.All",
- "Description": "Access media streams in a call as an app",
- "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calls.Initiate.All",
"Description": "Initiate outgoing 1 to 1 calls from the app",
"FullDescription": "Allows the app to place outbound calls to a single user and transfer calls to users in your organization’s directory, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calls.AccessMedia.All",
+ "Description": "Access media streams in a call as an app",
+ "FullDescription": "Allows the app to get direct access to media streams in a call, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallParticipantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallParticipantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}",
"OutputType": "IMicrosoftGraphCallRecordsCallRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/callRecords/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaCommunicationCallRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2",
"OutputType": "IMicrosoftGraphCallRecordsOrganizer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordOrganizerV2"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordOrganizerV2",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordParticipant"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordParticipant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}",
"OutputType": "IMicrosoftGraphCallRecordsParticipant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordParticipantV2"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordParticipantV2",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/participants_v2",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/participants_v2",
"OutputType": "IMicrosoftGraphCallRecordsParticipant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallRecordParticipantV2"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordParticipantV2",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-1.0"
},
{
- "Uri": "/communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"OutputType": "IMicrosoftGraphCallRecordsPstnBlockedUsersLogRow",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordPstnBlockedUserLog"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordPstnBlockedUserLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"OutputType": "IMicrosoftGraphCallRecordsPstnOnlineMeetingDialoutReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordPstnOnlineMeetingDialoutReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordPstnOnlineMeetingDialoutReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}",
"OutputType": "IMicrosoftGraphCallRecordsSession",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordSession"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordSession",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/sessions",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/sessions",
"OutputType": "IMicrosoftGraphCallRecordsSession",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationCallRecordSession"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordSession",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-1.0"
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordSessionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordSessionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordSessionSegmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordSessionSegmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"Module": "Beta.CloudCommunications",
- "Permissions": {
- "Name": "CallRecords.Read.All",
- "Description": "Read all call records",
- "FullDescription": "Allows the app to read call records for all calls and online meetings without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})",
"OutputType": "IMicrosoftGraphCallRecordsSmsLogRow",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationCallRecordSmLog"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationCallRecordSmLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}",
"OutputType": "IMicrosoftGraphOnlineMeeting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetExpanded",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeeting"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeeting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/onlineMeetings",
+ "OutputType": "IMicrosoftGraphOnlineMeeting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OnlineMeetings.Read",
"Description": "Read your online meetings",
"FullDescription": "Allows the app to read online meeting details on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.Read.All",
"Description": "Read online meeting details",
"FullDescription": "Allows the app to read online meeting details in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.ReadWrite",
"Description": "Read and create your online meetings",
"FullDescription": "Allows the app to read and create online meetings on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OnlineMeetings.ReadWrite.All",
"Description": "Read and create online meetings",
"FullDescription": "Allows the app to read and create online meetings as an application in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnlineMeeting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeeting"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeeting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAlternativeRecording"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAlternativeRecording",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}",
"OutputType": "IMicrosoftGraphMeetingAttendanceReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports",
"OutputType": "IMicrosoftGraphMeetingAttendanceReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}",
"OutputType": "IMicrosoftGraphAttendanceRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords",
"OutputType": "IMicrosoftGraphAttendanceRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attendancerecord-list?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingAttendeeReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingAttendeeReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingBroadcastRecording"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingBroadcastRecording",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')",
+ "OutputType": "IMicrosoftGraphOnlineMeeting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OnlineMeetings.Read",
"Description": "Read your online meetings",
"FullDescription": "Allows the app to read online meeting details on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.Read.All",
"Description": "Read online meeting details",
"FullDescription": "Allows the app to read online meeting details in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.ReadWrite",
"Description": "Read and create your online meetings",
"FullDescription": "Allows the app to read and create online meetings on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OnlineMeetings.ReadWrite.All",
"Description": "Read and create online meetings",
"FullDescription": "Allows the app to read and create online meetings as an application in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnlineMeeting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingByJoinWebUrl"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingByJoinWebUrl",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/$count",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/onlineMeetings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OnlineMeetings.Read",
"Description": "Read your online meetings",
"FullDescription": "Allows the app to read online meeting details on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.Read.All",
"Description": "Read online meeting details",
"FullDescription": "Allows the app to read online meeting details in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OnlineMeetings.ReadWrite",
"Description": "Read and create your online meetings",
"FullDescription": "Allows the app to read and create online meetings on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OnlineMeetings.ReadWrite.All",
"Description": "Read and create online meetings",
"FullDescription": "Allows the app to read and create online meetings as an application in your organization.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
@@ -21200,85378 +24486,98805 @@
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRecording"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRecording",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings",
"OutputType": "IMicrosoftGraphCallRecording",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRecording"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRecording",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta",
"OutputType": "IMicrosoftGraphCallRecording",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration",
"OutputType": "IMicrosoftGraphMeetingRegistration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalmeetingregistration-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}",
"OutputType": "IMicrosoftGraphMeetingRegistrationQuestion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/meetingregistrationquestion-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions",
"OutputType": "IMicrosoftGraphMeetingRegistrationQuestion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/meetingregistration-list-customquestions?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}",
"OutputType": "IMicrosoftGraphMeetingRegistrantBase",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants",
"OutputType": "IMicrosoftGraphMeetingRegistrantBase",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}",
"OutputType": "IMicrosoftGraphCallTranscript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calltranscript-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts",
"OutputType": "IMicrosoftGraphCallTranscript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta",
"OutputType": "IMicrosoftGraphCallTranscript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-list-transcripts?view=graph-rest-1.0"
},
{
- "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/presences/{presence-id}",
"Module": "Beta.CloudCommunications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/communications/presences/{presence-id}",
"OutputType": "IMicrosoftGraphPresence",
- "Method": "GET",
- "Variants": [
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaCommunicationPresence"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationPresence",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-1.0"
},
{
- "Uri": "/communications/presences",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/presences",
+ "OutputType": "IMicrosoftGraphPresence",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Presence.Read",
"Description": "Read your presence information",
"FullDescription": "Allows the app to read your presence information on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.Read.All",
"Description": "Read presence information of all users in your organization",
"FullDescription": "Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPresence",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaCommunicationPresence"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationPresence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/communications/getPresencesByUserId",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/getPresencesByUserId",
+ "OutputType": "IMicrosoftGraphPresence",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Presence.Read.All",
"Description": "Read presence information for all users",
"FullDescription": "Allows the app to read presence information of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPresence",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaCommunicationPresenceByUserId"
+ "Method": "POST",
+ "Command": "Get-MgBetaCommunicationPresenceByUserId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0"
},
{
- "Uri": "/communications/presences/$count",
"Module": "Beta.CloudCommunications",
+ "Uri": "/communications/presences/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Presence.Read",
"Description": "Read your presence information",
"FullDescription": "Allows the app to read your presence information on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Presence.Read.All",
"Description": "Read presence information of all users in your organization",
"FullDescription": "Allows the app to read presence information of all users in the directory on your behalf. Presence information includes activity, availability, status note, calendar out-of-office message, timezone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Presence.ReadWrite.All",
"Description": "Read and write presence information for all users",
"FullDescription": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaCommunicationPresenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaCommunicationPresenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance",
"OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaCompliance"
+ "Method": "GET",
+ "Command": "Get-MgBetaCompliance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery",
"OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaComplianceEdiscovery"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscovery",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryCase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCase",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCase"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases",
+ "OutputType": "IMicrosoftGraphEdiscoveryCase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCase",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCase"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-list?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryCustodian",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCustodian",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians",
+ "OutputType": "IMicrosoftGraphEdiscoveryCustodian",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCustodian",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-list-custodians?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation",
"OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianLastIndexOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianLastIndexOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}",
+ "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sitesource-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources",
+ "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-list-sitesources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-unifiedgroupsource-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-list-unifiedgroupsources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-usersource-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-list-usersources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryLegalHold",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-legalhold-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds",
+ "OutputType": "IMicrosoftGraphEdiscoveryLegalHold",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryLegalHold",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}",
"OutputType": "IMicrosoftGraphEdiscoverySiteSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources",
+ "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoverySiteSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-legalhold-list-sitesources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}",
"OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources",
"OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}",
"OutputType": "IMicrosoftGraphEdiscoveryUserSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryUserSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-legalhold-list-usersources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-list?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource",
+ "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
- "Method": "GET",
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceDataSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceDataSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation",
"OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceLastIndexOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceLastIndexOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}",
"OutputType": "IMicrosoftGraphEdiscoveryCaseOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations",
+ "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation",
"OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation",
"OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation/reviewSet",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation/reviewSet",
"OutputType": "IMicrosoftGraphEdiscoveryReviewSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperationReviewSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperationReviewSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCountAsCaseExportOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCountAsCaseExportOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryReviewSet",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets",
+ "OutputType": "IMicrosoftGraphEdiscoveryReviewSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryReviewSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries",
+ "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-list?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQueryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQueryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/settings",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/settings",
+ "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-casesettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}",
+ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoverySourceCollection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections",
+ "OutputType": "IMicrosoftGraphEdiscoverySourceCollection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoverySourceCollection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-list-sourcecollections?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}",
"OutputType": "IMicrosoftGraphEdiscoveryDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-additionalsources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation",
+ "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-addtoreviewsetoperation?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/{dataSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/{dataSource-id}",
"OutputType": "IMicrosoftGraphEdiscoveryDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryDataSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-custodiansources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation",
+ "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-lastestimatestatisticsoperation?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/{noncustodialDataSource-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/{noncustodialDataSource-id}",
"OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources",
+ "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-noncustodialsources?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}",
+ "OutputType": "IMicrosoftGraphEdiscoveryTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryTag",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-tag-get?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags",
+ "OutputType": "IMicrosoftGraphEdiscoveryTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryTag",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-list-tags?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/{tag-id1}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/{tag-id1}",
"OutputType": "IMicrosoftGraphEdiscoveryTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags",
+ "OutputType": "IMicrosoftGraphEdiscoveryTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEdiscoveryTag",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-tag-childtags?view=graph-rest-1.0"
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/$count",
"Module": "Beta.Compliance",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent",
"OutputType": "IMicrosoftGraphEdiscoveryTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaComplianceEdiscoveryCaseTagParent"
+ "Method": "GET",
+ "Command": "Get-MgBetaComplianceEdiscoveryCaseTagParent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}",
+ "OutputType": "IMicrosoftGraphOrgContact",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaContact",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-1.0"
},
{
- "Uri": "/contacts",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts",
+ "OutputType": "IMicrosoftGraphOrgContact",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaContact",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaContactById"
+ "Method": "POST",
+ "Command": "Get-MgBetaContactById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaContactCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/delta",
+ "OutputType": "IMicrosoftGraphOrgContact",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaContactDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/directReports",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactDirectReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list-directreports?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReportAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactDirectReportAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReportAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactDirectReportAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/directReports/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReportCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReportCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/directReports/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/directReports/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactDirectReportCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactDirectReportCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/manager",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/manager",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactManager"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactManager",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get-manager?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/getMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaContactMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaContactMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/getMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaContactMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaContactMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/memberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list-memberof?view=graph-rest-1.0"
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/memberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/memberOf/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/memberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "OrgContact.Read.All",
+ "Description": "Read organizational contacts",
+ "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "OrgContact.Read.All",
- "Description": "Read organizational contacts",
- "FullDescription": "Allows the app to read all organizational contacts without a signed-in user. These contacts are managed by the organization and are different from a user's personal contacts.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveReports/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveReports/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveReports",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveReports",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaContactTransitiveReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/{orgContact-id}/transitiveReports/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/{orgContact-id}/transitiveReports/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContactTransitiveReportCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContactTransitiveReportCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contacts/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contacts/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaContactUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaContactUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/{contract-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contracts/{contract-id}",
+ "OutputType": "IMicrosoftGraphContract",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContract",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaContract"
+ "Method": "GET",
+ "Command": "Get-MgBetaContract",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-1.0"
},
{
- "Uri": "/contracts",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contracts",
+ "OutputType": "IMicrosoftGraphContract",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContract",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaContract"
+ "Method": "GET",
+ "Command": "Get-MgBetaContract",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaContractById"
+ "Method": "POST",
+ "Command": "Get-MgBetaContractById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contracts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaContractCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaContractCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contracts/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/contracts/delta",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaContractDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaContractDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contracts/{contract-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/{contract-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaContractMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaContractMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/contracts/{contract-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/{contract-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaContractMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaContractMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/contracts/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/contracts/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaContractUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaContractUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}",
+ "OutputType": "IMicrosoftGraphDataPolicyOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Export.All",
"Description": "Export user's data",
"FullDescription": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDataPolicyOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDataPolicyOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDataPolicyOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/dataPolicyOperations",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/dataPolicyOperations",
"OutputType": "IMicrosoftGraphDataPolicyOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDataPolicyOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDataPolicyOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/dataPolicyOperations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/dataPolicyOperations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDataPolicyOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDataPolicyOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}",
+ "OutputType": "IMicrosoftGraphDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0"
},
{
- "Uri": "/devices",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices",
+ "OutputType": "IMicrosoftGraphDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-1.0"
},
{
- "Uri": "/deviceAppManagement",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement",
+ "OutputType": "IMicrosoftGraphDeviceAppManagement",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAppManagement",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}",
+ "OutputType": "IMicrosoftGraphAndroidManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedAppProtection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections",
+ "OutputType": "IMicrosoftGraphAndroidManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedAppProtection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary",
+ "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}",
+ "OutputType": "IMicrosoftGraphDefaultManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDefaultManagedAppProtection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections",
+ "OutputType": "IMicrosoftGraphDefaultManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDefaultManagedAppProtection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary",
+ "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}",
+ "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates",
+ "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}",
"OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations",
"OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}",
+ "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}",
+ "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments",
+ "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}",
+ "OutputType": "IMicrosoftGraphIosManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosManagedAppProtection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections",
+ "OutputType": "IMicrosoftGraphIosManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosManagedAppProtection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- }
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary",
+ "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppPolicies",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}",
+ "OutputType": "IMicrosoftGraphManagedAppRegistration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppRegistration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations",
+ "OutputType": "IMicrosoftGraphManagedAppRegistration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppRegistration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies",
+ "OutputType": "IMicrosoftGraphManagedAppPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}",
+ "OutputType": "IMicrosoftGraphManagedAppOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations",
+ "OutputType": "IMicrosoftGraphManagedAppOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}",
+ "OutputType": "IMicrosoftGraphManagedAppStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppStatuses",
+ "OutputType": "IMicrosoftGraphManagedAppStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedAppStatuses/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedAppStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedAppStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedAppStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}",
+ "OutputType": "IMicrosoftGraphManagedEBook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBook",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBook"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks",
+ "OutputType": "IMicrosoftGraphManagedEBook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBook",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBook"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}",
+ "OutputType": "IMicrosoftGraphManagedEBookAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBookAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments",
+ "OutputType": "IMicrosoftGraphManagedEBookAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBookAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}",
+ "OutputType": "IMicrosoftGraphManagedEBookCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBookCategory",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBookCategories",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBookCategories",
+ "OutputType": "IMicrosoftGraphManagedEBookCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedEBookCategory",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBookCategories/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBookCategories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}",
+ "OutputType": "IMicrosoftGraphDeviceInstallState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceInstallState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates",
+ "OutputType": "IMicrosoftGraphDeviceInstallState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceInstallState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary",
+ "OutputType": "IMicrosoftGraphEBookInstallSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEBookInstallSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookInstallSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookInstallSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}",
+ "OutputType": "IMicrosoftGraphUserInstallStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserInstallStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary",
+ "OutputType": "IMicrosoftGraphUserInstallStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserInstallStateSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}",
+ "OutputType": "IMicrosoftGraphDeviceInstallState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceInstallState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates",
+ "OutputType": "IMicrosoftGraphDeviceInstallState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceInstallState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}",
+ "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies",
+ "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}",
+ "OutputType": "IMicrosoftGraphMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps",
+ "OutputType": "IMicrosoftGraphMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp",
"OutputType": "IMicrosoftGraphAndroidForWorkApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp",
+ "OutputType": "IMicrosoftGraphAndroidForWorkApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp",
"OutputType": "IMicrosoftGraphAndroidLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidLobApp",
+ "OutputType": "IMicrosoftGraphAndroidLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp",
"OutputType": "IMicrosoftGraphAndroidManagedStoreApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp",
+ "OutputType": "IMicrosoftGraphAndroidManagedStoreApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedStoreApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp",
"OutputType": "IMicrosoftGraphAndroidStoreApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidStoreApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidStoreApp",
+ "OutputType": "IMicrosoftGraphAndroidStoreApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidStoreApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp",
"OutputType": "IMicrosoftGraphIosLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosLobApp",
+ "OutputType": "IMicrosoftGraphIosLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp",
"OutputType": "IMicrosoftGraphIosStoreApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosStoreApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosStoreApp",
+ "OutputType": "IMicrosoftGraphIosStoreApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosStoreApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp",
"OutputType": "IMicrosoftGraphIosVppApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosVppApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosVppApp",
+ "OutputType": "IMicrosoftGraphIosVppApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosVppApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}",
"OutputType": "IMicrosoftGraphIosVppAppAssignedLicense",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses",
"OutputType": "IMicrosoftGraphIosVppAppAssignedLicense",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicenseCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicenseCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp",
"OutputType": "IMicrosoftGraphMacOSDmgApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp",
+ "OutputType": "IMicrosoftGraphMacOSDmgApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSDmgApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp",
"OutputType": "IMicrosoftGraphMacOSLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSLobApp",
+ "OutputType": "IMicrosoftGraphMacOSLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp",
"OutputType": "IMicrosoftGraphMacOSPkgApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp",
+ "OutputType": "IMicrosoftGraphMacOSPkgApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSPkgApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp",
"OutputType": "IMicrosoftGraphManagedAndroidLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp",
+ "OutputType": "IMicrosoftGraphManagedAndroidLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAndroidLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp",
"OutputType": "IMicrosoftGraphManagedIosLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp",
+ "OutputType": "IMicrosoftGraphManagedIosLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedIosLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp",
"OutputType": "IMicrosoftGraphManagedMobileLobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp",
+ "OutputType": "IMicrosoftGraphManagedMobileLobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileLobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp",
"OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp",
+ "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}",
+ "OutputType": "IMicrosoftGraphMobileAppAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments",
+ "OutputType": "IMicrosoftGraphMobileAppAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp",
"OutputType": "IMicrosoftGraphWin32LobApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/win32LobApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/win32LobApp",
+ "OutputType": "IMicrosoftGraphWin32LobApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWin32LobApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX",
"OutputType": "IMicrosoftGraphWindowsAppX",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsAppX",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsAppX",
+ "OutputType": "IMicrosoftGraphWindowsAppX",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAppX",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI",
"OutputType": "IMicrosoftGraphWindowsMobileMsi",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI",
+ "OutputType": "IMicrosoftGraphWindowsMobileMsi",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsMobileMsi",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp",
"OutputType": "IMicrosoftGraphWindowsStoreApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp",
+ "OutputType": "IMicrosoftGraphWindowsStoreApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsStoreApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX",
"OutputType": "IMicrosoftGraphWindowsUniversalAppX",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX",
+ "OutputType": "IMicrosoftGraphWindowsUniversalAppX",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsUniversalAppX",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions",
"OutputType": "IMicrosoftGraphMobileAppContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps",
"OutputType": "IMicrosoftGraphMobileContainedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files",
"OutputType": "IMicrosoftGraphMobileAppContentFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp",
"OutputType": "IMicrosoftGraphWindowsWebApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsWebApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsWebApp",
+ "OutputType": "IMicrosoftGraphWindowsWebApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsWebApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp",
"OutputType": "IMicrosoftGraphWinGetApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/winGetApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/winGetApp",
+ "OutputType": "IMicrosoftGraphWinGetApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWinGetApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments",
"OutputType": "IMicrosoftGraphMobileAppAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/{mobileAppCategory-id}",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories",
"OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships",
"OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}",
"OutputType": "IMicrosoftGraphMobileAppCatalogPackage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCatalogPackages",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileAppCatalogPackages",
"OutputType": "IMicrosoftGraphMobileAppCatalogPackage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCatalogPackages/$count",
"Module": "Beta.Devices.CorporateManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceAppManagement/mobileAppCatalogPackages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}",
+ "OutputType": "IMicrosoftGraphMobileAppCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCategories",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppCategories",
+ "OutputType": "IMicrosoftGraphMobileAppCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppCategory",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppCategories/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppCategories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary",
+ "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidForWorkApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidForWorkApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidManagedStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidManagedStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsiOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsiOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoVppApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoVppApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSDmgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSDmgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSPkgApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSPkgApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedAndroidLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedAndroidLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagediOSLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagediOSLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedMobileLobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedMobileLobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWin32LobApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWin32LobApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsMobileMsi"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsMobileMsi",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowStoreApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowStoreApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsUniversalAppX"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsUniversalAppX",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsWebApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsWebApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/winGetApp/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/winGetApp/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWinGetApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWinGetApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}",
+ "OutputType": "IMicrosoftGraphMobileAppRelationship",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships",
+ "OutputType": "IMicrosoftGraphMobileAppRelationship",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppRelationship",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}",
+ "OutputType": "IMicrosoftGraphPolicySet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySet",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetExpanded",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySet"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets",
+ "OutputType": "IMicrosoftGraphPolicySet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySet"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}",
+ "OutputType": "IMicrosoftGraphPolicySetAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySetAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments",
+ "OutputType": "IMicrosoftGraphPolicySetAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySetAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}",
+ "OutputType": "IMicrosoftGraphPolicySetItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySetItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/items",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/items",
+ "OutputType": "IMicrosoftGraphPolicySetItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicySetItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementPolicySetItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementPolicySetItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/symantecCodeSigningCertificate",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/symantecCodeSigningCertificate",
+ "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementSymantecCodeSigningCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementSymantecCodeSigningCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary",
+ "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}",
+ "OutputType": "IMicrosoftGraphDeviceAppManagementTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAppManagementTask",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/deviceAppManagementTasks",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/deviceAppManagementTasks",
+ "OutputType": "IMicrosoftGraphDeviceAppManagementTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAppManagementTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/deviceAppManagementTasks/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/deviceAppManagementTasks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}",
+ "OutputType": "IMicrosoftGraphVppToken",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphVppToken",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementVppToken"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementVppToken",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/vppTokens",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/vppTokens",
+ "OutputType": "IMicrosoftGraphVppToken",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphVppToken",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementVppToken"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementVppToken",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/vppTokens/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/vppTokens/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementVppTokenCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementVppTokenCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/vppTokens/getLicensesForApp(bundleId='{bundleId}')",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/vppTokens/getLicensesForApp(bundleId='{bundleId}')",
+ "OutputType": "IMicrosoftGraphVppTokenLicenseSummary",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphVppTokenLicenseSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementVppTokenLicenseForApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementVppTokenLicenseForApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeploySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeploySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses",
+ "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistrationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistrationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}",
+ "OutputType": "IMicrosoftGraphWindowsManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsManagedAppProtection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections",
+ "OutputType": "IMicrosoftGraphWindowsManagedAppProtection",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsManagedAppProtection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps",
+ "OutputType": "IMicrosoftGraphManagedMobileApp",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedMobileApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments",
+ "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagedAppProtections/$count",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagedAppProtections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceAppManagement/windowsManagementApp",
"Module": "Beta.Devices.CorporateManagement",
+ "Uri": "/deviceAppManagement/windowsManagementApp",
+ "OutputType": "IMicrosoftGraphWindowsManagementApp",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsManagementApp",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceAppManagementWindowsManagementApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceAppManagementWindowsManagementApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices(deviceId='{deviceId}')",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices(deviceId='{deviceId}')",
+ "OutputType": "IMicrosoftGraphDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceByDeviceId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceByDeviceId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0"
},
{
- "Uri": "/devices/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/commands/{command-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/commands/{command-id}",
"OutputType": "IMicrosoftGraphCommand",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceCommand"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceCommand",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/commands",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/commands",
"OutputType": "IMicrosoftGraphCommand",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceCommand"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceCommand",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/commands/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/commands/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceCommandCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceCommandCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/commands/{command-id}/responsepayload",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/commands/{command-id}/responsepayload",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceCommandResponsepayload"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceCommandResponsepayload",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/delta",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/devices/delta",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDeviceDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/extensions/{extension-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/extensions",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/extensions/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement",
+ "OutputType": "IMicrosoftGraphDeviceManagement",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.Read.All",
+ "Description": "Read Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.Read.All",
+ "Description": "Read Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.Read.All",
- "Description": "Read Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.Read.All",
- "Description": "Read Microsoft Intune configuration",
- "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.",
- "IsAdmin": true
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagement",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary",
+ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}",
+ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates",
+ "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}",
+ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles",
+ "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}",
+ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas",
+ "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchemaCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchemaCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}",
+ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles",
+ "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidForWorkSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidForWorkSettings",
+ "OutputType": "IMicrosoftGraphAndroidForWorkSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidForWorkSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidForWorkSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidForWorkSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings",
+ "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}",
+ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas",
+ "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchemaCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchemaCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/applePushNotificationCertificate",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/applePushNotificationCertificate",
+ "OutputType": "IMicrosoftGraphApplePushNotificationCertificate",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplePushNotificationCertificate",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementApplePushNotificationCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementApplePushNotificationCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}",
+ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles",
+ "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}",
+ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments",
+ "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getAssignedRoleDetails",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/getAssignedRoleDetails",
+ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAssignedRoleDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignedRoleDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}",
+ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilter"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/assignmentFilters",
+ "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilter"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/assignmentFilters/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform='{platform}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform='{platform}')",
+ "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilterPlatformSupportedProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilterPlatformSupportedProperty",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/getState",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/assignmentFilters/getState",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilterState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilterState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getAssignmentFiltersStatusDetails",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/getAssignmentFiltersStatusDetails",
+ "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilterStatusDetail"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilterStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties",
+ "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAssignmentFilterSupportedProperty"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAssignmentFilterSupportedProperty",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/auditEvents/{auditEvent-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/auditEvents/{auditEvent-id}",
+ "OutputType": "IMicrosoftGraphAuditEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuditEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAuditEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/auditEvents",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/auditEvents",
+ "OutputType": "IMicrosoftGraphAuditEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuditEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAuditEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAuditEventAuditActivityType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAuditEventAuditActivityType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/auditEvents/getAuditCategories",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/auditEvents/getAuditCategories",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAuditEventAuditCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAuditEventAuditCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/auditEvents/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/auditEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAuditEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAuditEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents",
+ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails",
+ "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}",
+ "OutputType": "IMicrosoftGraphCartToClassAssociation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCartToClassAssociation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCartToClassAssociation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCartToClassAssociation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/cartToClassAssociations",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/cartToClassAssociations",
+ "OutputType": "IMicrosoftGraphCartToClassAssociation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCartToClassAssociation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCartToClassAssociation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCartToClassAssociation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/cartToClassAssociations/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/cartToClassAssociations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementCartToClassAssociationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCartToClassAssociationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCategorySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCategorySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics",
+ "OutputType": "IMicrosoftGraphKeyLongValuePair",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphKeyLongValuePair",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetric"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries",
+ "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/comanagedDevices",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}",
"OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails",
"OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory",
"OutputType": "IMicrosoftGraphDeviceCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcRemoteActionResults",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcRemoteActionResults",
"OutputType": "IMicrosoftGraphCloudPcRemoteActionResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcRemoteActionResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcRemoteActionResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcReviewStatus",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcReviewStatus",
"OutputType": "IMicrosoftGraphCloudPcReviewStatus",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}",
"OutputType": "IMicrosoftGraphDeviceConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates",
"OutputType": "IMicrosoftGraphDeviceConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/comanagedDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}",
"OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps",
"OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getFileVaultKey",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getFileVaultKey",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceFileVaultKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceFileVaultKey",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'",
"OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates",
"OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}",
"OutputType": "IMicrosoftGraphDeviceLogCollectionResponse",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests",
"OutputType": "IMicrosoftGraphDeviceLogCollectionResponse",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}",
"OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates",
"OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceNonCompliantSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceNonCompliantSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}",
"OutputType": "IMicrosoftGraphSecurityBaselineState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates",
"OutputType": "IMicrosoftGraphSecurityBaselineState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}",
"OutputType": "IMicrosoftGraphSecurityBaselineSettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates",
"OutputType": "IMicrosoftGraphSecurityBaselineSettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getComanagedDevicesSummary",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/getComanagedDevicesSummary",
+ "OutputType": "IMicrosoftGraphComanagedDevicesSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComanagedDevicesSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState",
"OutputType": "IMicrosoftGraphWindowsProtectionState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}",
"OutputType": "IMicrosoftGraphWindowsDeviceMalwareState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState",
"OutputType": "IMicrosoftGraphWindowsDeviceMalwareState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}",
+ "OutputType": "IMicrosoftGraphComanagementEligibleDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComanagementEligibleDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagementEligibleDevices",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/comanagementEligibleDevices",
+ "OutputType": "IMicrosoftGraphComanagementEligibleDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComanagementEligibleDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/comanagementEligibleDevices/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/comanagementEligibleDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getComanagementEligibleDevicesSummary",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/getComanagementEligibleDevicesSummary",
+ "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}",
+ "OutputType": "IMicrosoftGraphComplianceManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComplianceManagementPartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceManagementPartners",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/complianceManagementPartners",
+ "OutputType": "IMicrosoftGraphComplianceManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphComplianceManagementPartner",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceManagementPartners/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/complianceManagementPartners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComplianceManagementPartnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceManagementPartnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies",
+ "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule",
+ "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations",
+ "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementComplianceSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/complianceSettings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementComplianceSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/complianceSettings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/complianceSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementComplianceSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementComplianceSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/conditionalAccessSettings",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/conditionalAccessSettings",
+ "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementConditionalAccessSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConditionalAccessSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configManagerCollections/getPolicySummary(policyId='{policyId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/configManagerCollections/getPolicySummary(policyId='{policyId}')",
+ "OutputType": "IMicrosoftGraphConfigManagerPolicySummary",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConfigManagerPolicySummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigManagerCollectionPolicySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigManagerCollectionPolicySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyJust"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyJust",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyLatestUpgradeDefaultBaselinePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyLatestUpgradeDefaultBaselinePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationSettings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/configurationSettings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/configurationSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementConfigurationSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementConfigurationSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}",
+ "OutputType": "IMicrosoftGraphDataSharingConsent",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDataSharingConsent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDataSharingConsent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDataSharingConsent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/dataSharingConsents",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/dataSharingConsents",
+ "OutputType": "IMicrosoftGraphDataSharingConsent",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDataSharingConsent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDataSharingConsent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDataSharingConsent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/dataSharingConsents/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/dataSharingConsents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDataSharingConsentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDataSharingConsentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}",
+ "OutputType": "IMicrosoftGraphDepOnboardingSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDepOnboardingSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings",
+ "OutputType": "IMicrosoftGraphDepOnboardingSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDepOnboardingSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile",
+ "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile",
+ "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}",
+ "OutputType": "IMicrosoftGraphEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnrollmentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles",
+ "OutputType": "IMicrosoftGraphEnrollmentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnrollmentProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingExpiringVppTokenCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingExpiringVppTokenCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}",
+ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities",
+ "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}",
"OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDerivedCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDerivedCredential",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/derivedCredentials",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/derivedCredentials",
"OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDerivedCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDerivedCredential",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/derivedCredentials/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/derivedCredentials/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDerivedCredentialCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDerivedCredentialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps/{detectedApp-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps/{detectedApp-id}",
+ "OutputType": "IMicrosoftGraphDetectedApp",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps",
+ "OutputType": "IMicrosoftGraphDetectedApp",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDetectedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/{managedDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/{managedDevice-id}",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}",
+ "OutputType": "IMicrosoftGraphDeviceCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCategories",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCategories",
+ "OutputType": "IMicrosoftGraphDeviceCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCategory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCategories/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCategories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire",
+ "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}",
+ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries",
+ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}",
+ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses",
+ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview",
+ "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/getNoncompliantDevicesToRetire",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/getNoncompliantDevicesToRetire",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyNoncompliantDeviceToRetire"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyNoncompliantDeviceToRetire",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}",
+ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule",
+ "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}",
+ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceActionItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations",
+ "OutputType": "IMicrosoftGraphDeviceComplianceActionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceActionItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries",
+ "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}",
+ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceSettingState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates",
+ "OutputType": "IMicrosoftGraphDeviceComplianceSettingState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceSettingState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}",
+ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses",
+ "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview",
+ "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations",
+ "OutputType": "IMicrosoftGraphDeviceConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAllManagedDeviceCertificateStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAllManagedDeviceCertificateStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationConflictSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationConflictSummary",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationConflictSummary/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationConflictSummary/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}",
+ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries",
+ "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSettingStateDeviceSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration",
+ "OutputType": "IMicrosoftGraphDeviceConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions",
+ "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationIoAvailableUpdateVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationIoAvailableUpdateVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}",
+ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates",
+ "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
+ "Variants": [
+ "Get",
+ "GetViaIdentity"
+ ],
"Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue",
+ "ApiReferenceLink": null
+ },
+ {
+ "Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile",
+ "ApiReferenceLink": null
+ },
+ {
+ "Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationProfiles",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationProfile",
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
+ "List"
+ ],
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile",
+ "ApiReferenceLink": null
+ },
+ {
+ "Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
+ "Get"
+ ],
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}",
+ "OutputType": "IMicrosoftGraphRestrictedAppsViolation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRestrictedAppsViolation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations",
+ "OutputType": "IMicrosoftGraphRestrictedAppsViolation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRestrictedAppsViolation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/getTargetedUsersAndDevices",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceConfigurations/getTargetedUsersAndDevices",
"OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationTargetedUserAndDevice"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationTargetedUserAndDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview",
+ "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}",
+ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations",
+ "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}",
+ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceEnrollmentConfigurations/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/deviceEnrollmentConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}",
+ "OutputType": "IMicrosoftGraphDeviceHealthScript",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScript",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts",
+ "OutputType": "IMicrosoftGraphDeviceHealthScript",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScript",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getGlobalScriptHighestAvailableVersion",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getGlobalScriptHighestAvailableVersion",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getRemediationHistory",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getRemediationHistory",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/getRemediationSummary",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/deviceHealthScripts/getRemediationSummary",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary",
+ "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRunSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRunSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}",
+ "OutputType": "IMicrosoftGraphDeviceShellScript",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceShellScript",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts",
+ "OutputType": "IMicrosoftGraphDeviceShellScript",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceShellScript",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice",
"OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptRunSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptRunSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
"OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates",
"OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementDomainJoinConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDomainJoinConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/domainJoinConnectors",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/domainJoinConnectors",
+ "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementDomainJoinConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDomainJoinConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/domainJoinConnectors/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/domainJoinConnectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementDomainJoinConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementDomainJoinConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getEffectivePermissions",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/getEffectivePermissions",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEffectivePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEffectivePermission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/getAllElevationRequests",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/getAllElevationRequests",
"OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementElevationRequest"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementElevationRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}",
+ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools",
+ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}",
+ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments",
+ "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}",
+ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates",
+ "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementExchangeConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeConnectors",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/exchangeConnectors",
+ "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementExchangeConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeConnectors/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/exchangeConnectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementExchangeConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeOnPremisesPolicies",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/exchangeOnPremisesPolicies",
"OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings",
"OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/exchangeOnPremisesPolicies/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/exchangeOnPremisesPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyCategories",
+ "OutputType": "IMicrosoftGraphGroupPolicyCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/{groupPolicyCategory-id1}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/{groupPolicyCategory-id1}",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyCategories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/{groupPolicyDefinition-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/{groupPolicyDefinition-id}",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryParent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryParent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations",
+ "OutputType": "IMicrosoftGraphGroupPolicyConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments",
+ "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues",
+ "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyDefinitions",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/{groupPolicyDefinition-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/{groupPolicyDefinition-id}",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/category",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/category",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/definitionFile",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/definitionFile",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/category",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/category",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/definitionFile",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/definitionFile",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/category",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/category",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/definitionFile",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/definitionFile",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/category",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/category",
"OutputType": "IMicrosoftGraphGroupPolicyCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/definitionFile",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/definitionFile",
"OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations",
"OutputType": "IMicrosoftGraphGroupPolicyPresentation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports",
+ "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicySettingMapping",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings",
+ "OutputType": "IMicrosoftGraphGroupPolicySettingMapping",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicySettingMapping",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMappingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMappingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}",
+ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions",
+ "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyObjectFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyObjectFiles",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyObjectFiles",
+ "OutputType": "IMicrosoftGraphGroupPolicyObjectFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyObjectFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyObjectFiles/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyObjectFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}",
+ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles",
+ "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/{groupPolicyDefinition-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/{groupPolicyDefinition-id}",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions",
"OutputType": "IMicrosoftGraphGroupPolicyDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}",
"OutputType": "IMicrosoftGraphGroupPolicyOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations",
"OutputType": "IMicrosoftGraphGroupPolicyOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}",
+ "OutputType": "IMicrosoftGraphImportedDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedDeviceIdentity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedDeviceIdentities",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedDeviceIdentities",
+ "OutputType": "IMicrosoftGraphImportedDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedDeviceIdentity",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedDeviceIdentities/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedDeviceIdentities/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}",
+ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities",
+ "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementIntentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/getCustomizedSettings",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/getCustomizedSettings",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentCustomizedSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentCustomizedSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentCustomizedSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentCustomizedSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentDeviceStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentDeviceStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentUserState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentUserState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntentUserState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentUserState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentUserStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentUserStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary",
+ "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntentUserStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntentUserStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}",
+ "OutputType": "IMicrosoftGraphIntuneBrandingProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIntuneBrandingProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles",
+ "OutputType": "IMicrosoftGraphIntuneBrandingProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIntuneBrandingProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}",
+ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments",
+ "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/intuneBrandingProfiles/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/intuneBrandingProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}",
+ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementIoUpdateStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIoUpdateStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/iosUpdateStatuses",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/iosUpdateStatuses",
+ "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementIoUpdateStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIoUpdateStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/iosUpdateStatuses/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/iosUpdateStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementIoUpdateStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementIoUpdateStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries",
+ "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDevices",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}",
"OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails",
"OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory",
"OutputType": "IMicrosoftGraphDeviceCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}",
"OutputType": "IMicrosoftGraphManagedDeviceCleanupRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceCleanupRules",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDeviceCleanupRules",
"OutputType": "IMicrosoftGraphManagedDeviceCleanupRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceCleanupRules/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDeviceCleanupRules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults",
"OutputType": "IMicrosoftGraphCloudPcRemoteActionResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcRemoteActionResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcRemoteActionResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcReviewStatus",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcReviewStatus",
+ "OutputType": "IMicrosoftGraphCloudPcReviewStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcReviewStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}",
"OutputType": "IMicrosoftGraphDeviceConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates",
"OutputType": "IMicrosoftGraphDeviceConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}",
"OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps",
"OutputType": "IMicrosoftGraphDetectedApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}",
+ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceEncryptionStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDeviceEncryptionStates",
+ "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceEncryptionStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDeviceEncryptionStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getFileVaultKey",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getFileVaultKey",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceFileVaultKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceFileVaultKey",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'",
"OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates",
"OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}",
"OutputType": "IMicrosoftGraphDeviceLogCollectionResponse",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests",
"OutputType": "IMicrosoftGraphDeviceLogCollectionResponse",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}",
"OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates",
"OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings",
"OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceNonCompliantSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceNonCompliantSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDeviceOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/managedDeviceOverview",
+ "OutputType": "IMicrosoftGraphManagedDeviceOverview",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDeviceOverview",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}",
"OutputType": "IMicrosoftGraphSecurityBaselineState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates",
"OutputType": "IMicrosoftGraphSecurityBaselineState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}",
"OutputType": "IMicrosoftGraphSecurityBaselineSettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates",
"OutputType": "IMicrosoftGraphSecurityBaselineSettingState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState",
"OutputType": "IMicrosoftGraphWindowsProtectionState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}",
"OutputType": "IMicrosoftGraphWindowsDeviceMalwareState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState",
"OutputType": "IMicrosoftGraphWindowsDeviceMalwareState",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelConfigurations",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelConfigurations",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelConfigurations/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelHealthThresholds",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelHealthThresholds",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThresholdCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThresholdCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelSite",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelSite",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelServer",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers",
+ "OutputType": "IMicrosoftGraphMicrosoftTunnelServer",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftTunnelServer",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics",
+ "OutputType": "IMicrosoftGraphKeyLongValuePair",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphKeyLongValuePair",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries",
+ "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}",
+ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents",
+ "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}",
+ "OutputType": "IMicrosoftGraphAppLogCollectionRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppLogCollectionRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests",
+ "OutputType": "IMicrosoftGraphAppLogCollectionRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppLogCollectionRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}",
+ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileThreatDefenseConnectors",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/mobileThreatDefenseConnectors",
+ "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/mobileThreatDefenseConnectors/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/mobileThreatDefenseConnectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/monitoring",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/monitoring",
"OutputType": "IMicrosoftGraphDeviceManagementMonitoring",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMonitoring"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoring",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrecord-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/monitoring/alertRecords",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRecords",
+ "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrecord-list?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/monitoring/alertRecords/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRecords/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/monitoring/alertRecords/getPortalNotifications",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/monitoring/alertRecords/getPortalNotifications",
+ "OutputType": "IMicrosoftGraphDeviceManagementPortalNotification",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementPortalNotification",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordPortalNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordPortalNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAlertRule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrule-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/monitoring/alertRules",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRules",
+ "OutputType": "IMicrosoftGraphDeviceManagementAlertRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementAlertRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrule-list?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/monitoring/alertRules/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/monitoring/alertRules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementMonitoringAlertRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementMonitoringAlertRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}",
+ "OutputType": "IMicrosoftGraphNdesConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNdesConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementNdeConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNdeConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/ndesConnectors",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/ndesConnectors",
+ "OutputType": "IMicrosoftGraphNdesConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNdesConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementNdeConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNdeConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/ndesConnectors/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/ndesConnectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementNdeConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNdeConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}",
+ "OutputType": "IMicrosoftGraphNotificationMessageTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotificationMessageTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates",
+ "OutputType": "IMicrosoftGraphNotificationMessageTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotificationMessageTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}",
+ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphLocalizedNotificationMessage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages",
+ "OutputType": "IMicrosoftGraphLocalizedNotificationMessage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphLocalizedNotificationMessage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalPolicies/getApprovableOperations",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/operationApprovalPolicies/getApprovableOperations",
+ "OutputType": "IMicrosoftGraphOperationApprovalPolicySet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOperationApprovalPolicySet",
- "Method": "GET",
"Variants": [
"Get",
"Retrieve"
],
- "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyApprovableOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyApprovableOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalPolicies/getOperationsRequiringApproval",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/operationApprovalPolicies/getOperationsRequiringApproval",
+ "OutputType": "IMicrosoftGraphOperationApprovalPolicySet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOperationApprovalPolicySet",
- "Method": "GET",
"Variants": [
"Get",
"Retrieve"
],
- "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyOperationRequiringApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyOperationRequiringApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequests",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequests",
+ "OutputType": "IMicrosoftGraphOperationApprovalRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOperationApprovalRequest",
- "Method": "GET",
"Variants": [
"Retrieve"
],
- "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequestById(id='{id}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequestById(id='{id}')",
+ "OutputType": "IMicrosoftGraphOperationApprovalRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOperationApprovalRequest",
- "Method": "GET",
"Variants": [
"Retrieve",
"RetrieveViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequestById"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequestById",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/operationApprovalRequests/retrieveRequestStatus",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/operationApprovalRequests/retrieveRequestStatus",
"OutputType": "IMicrosoftGraphOperationApprovalRequestEntityStatus",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveExpanded"
],
- "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestStatus"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementPartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementPartners",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceManagementPartners",
+ "OutputType": "IMicrosoftGraphDeviceManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementPartner",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementPartners/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/deviceManagementPartners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementPartnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementPartnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}",
+ "OutputType": "IMicrosoftGraphRemoteActionAudit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRemoteActionAudit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRemoteActionAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteActionAudit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteActionAudits",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/remoteActionAudits",
+ "OutputType": "IMicrosoftGraphRemoteActionAudit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRemoteActionAudit",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRemoteActionAudit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteActionAudit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteActionAudits/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/remoteActionAudits/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementRemoteActionAuditCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteActionAuditCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}",
+ "OutputType": "IMicrosoftGraphRemoteAssistancePartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRemoteAssistancePartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteAssistancePartners",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/remoteAssistancePartners",
+ "OutputType": "IMicrosoftGraphRemoteAssistancePartner",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRemoteAssistancePartner",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/remoteAssistancePartners/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/remoteAssistancePartners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports",
+ "OutputType": "IMicrosoftGraphDeviceManagementReports",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.Read.All",
+ "Description": "Read Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.Read.All",
- "Description": "Read Microsoft Intune configuration",
- "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementReports",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getActiveMalwareReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getActiveMalwareReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportActiveMalwareReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportActiveMalwareReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getActiveMalwareSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getActiveMalwareSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportActiveMalwareSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportActiveMalwareSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getAppsInstallSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getAppsInstallSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportAppInstallSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportAppInstallSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getAppStatusOverviewReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getAppStatusOverviewReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportAppStatusOverviewReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportAppStatusOverviewReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCachedReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getCachedReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCachedReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCachedReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/cachedReportConfigurations/{deviceManagementCachedReportConfiguration-id}",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/cachedReportConfigurations/{deviceManagementCachedReportConfiguration-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/cachedReportConfigurations",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/cachedReportConfigurations",
+ "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/cachedReportConfigurations/$count",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/cachedReportConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementReportCachedReportConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportCachedReportConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCompliancePolicyDevicesReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getCompliancePolicyDevicesReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCompliancePolicyDeviceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getCompliancePolicyDeviceSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getCompliancePoliciesReportForDevice",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getCompliancePoliciesReportForDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyReportForDevice"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyReportForDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getComplianceSettingDetailsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getComplianceSettingDetailsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportComplianceSettingDetailReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportComplianceSettingDetailReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportComplianceSettingNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportComplianceSettingNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getComplianceSettingsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getComplianceSettingsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportComplianceSettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportComplianceSettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigManagerDevicePolicyStatusReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigManagerDevicePolicyStatusReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigManagerDevicePolicyStatusReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigManagerDevicePolicyStatusReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPolicyDevicesReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationPolicyDevicesReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPoliciesReportForDevice",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationPoliciesReportForDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyReportForDevice"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyReportForDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationPolicySettingsDeviceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationPolicySettingsDeviceSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationSettingDetailsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationSettingDetailsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingDetailReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingDetailReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getConfigurationSettingsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getConfigurationSettingsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicySettingsSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicySettingsSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicyStatusSummary",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicyStatusSummary",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicyStatusSummary"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicyStatusSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceInstallStatusReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getDeviceInstallStatusReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceInstallStatusReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceInstallStatusReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentSettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentSettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDevicePoliciesComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDevicePoliciesComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDevicePolicyComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDevicePolicyComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDevicePolicySettingsComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDevicePolicySettingsComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDevicePolicySettingComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDevicePolicySettingComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceStatusByCompliacePolicyReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceStatusByCompliacePolicyReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliacePolicyReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliacePolicyReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceStatusByCompliancePolicySettingReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceStatusByCompliancePolicySettingReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliancePolicySettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliancePolicySettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDevicesStatusByPolicyPlatformComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDevicesStatusByPolicyPlatformComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByPolicyPlatformComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByPolicyPlatformComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDevicesStatusBySettingReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDevicesStatusBySettingReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusBySettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusBySettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliacePolicyReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliacePolicyReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliacePolicyReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliacePolicyReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliancePolicySettingsReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliancePolicySettingsReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliancePolicySettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliancePolicySettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportDeviceWithoutCompliancePolicyReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportDeviceWithoutCompliancePolicyReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getEncryptionReportForDevices",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getEncryptionReportForDevices",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportEncryptionReportForDevice"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportEncryptionReportForDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getEnrollmentConfigurationPoliciesByDevice",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getEnrollmentConfigurationPoliciesByDevice",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportEnrollmentConfigurationPolicyByDevice"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportEnrollmentConfigurationPolicyByDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementExportJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementExportJob",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementReportExportJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportExportJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/exportJobs",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/exportJobs",
+ "OutputType": "IMicrosoftGraphDeviceManagementExportJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementExportJob",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementReportExportJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportExportJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/exportJobs/$count",
"Module": "Beta.Reports",
+ "Uri": "/deviceManagement/reports/exportJobs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementReportExportJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReportExportJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getFailedMobileAppsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getFailedMobileAppsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getFailedMobileAppsSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getFailedMobileAppsSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getReportFilters",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getReportFilters",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportFilter"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportFilter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getGroupPolicySettingsDeviceSettingsReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getGroupPolicySettingsDeviceSettingsReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportGroupPolicySettingDeviceSettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportGroupPolicySettingDeviceSettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getHistoricalReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getHistoricalReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportHistoricalReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportHistoricalReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getMalwareSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getMalwareSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportMalwareSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportMalwareSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppConfigurationReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppConfigurationReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppConfigurationReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppConfigurationReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppRegistrationSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppRegistrationSummaryReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppRegistrationSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppRegistrationSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportNoncompliantDeviceAndSettingReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportNoncompliantDeviceAndSettingReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceMetadata"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceMetadata",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportRelatedAppStatusReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportRelatedAppStatusReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getRemoteAssistanceSessionsReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getRemoteAssistanceSessionsReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportRemoteAssistanceSessionReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportRemoteAssistanceSessionReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getSettingNonComplianceReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getSettingNonComplianceReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementApps.Read.All",
- "Description": "Read Microsoft Intune apps",
- "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementApps.ReadWrite.All",
- "Description": "Read and write Microsoft Intune apps",
- "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.Read.All",
+ "Description": "Read Microsoft Intune devices",
+ "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.Read.All",
- "Description": "Read Microsoft Intune devices",
- "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune apps",
+ "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementApps.Read.All",
+ "Description": "Read Microsoft Intune apps",
+ "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportSettingNonComplianceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportSettingNonComplianceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getUnhealthyDefenderAgentsReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getUnhealthyDefenderAgentsReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportUnhealthyDefenderAgentReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportUnhealthyDefenderAgentReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getUnhealthyFirewallReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getUnhealthyFirewallReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getUnhealthyFirewallSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getUnhealthyFirewallSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getUserInstallStatusReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getUserInstallStatusReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportUserInstallStatusReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportUserInstallStatusReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertsPerPolicyPerDeviceReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertsPerPolicyPerDeviceReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertPerPolicyPerDeviceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertPerPolicyPerDeviceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertPerPolicyPerDeviceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertPerPolicyPerDeviceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsUpdateAlertsPerPolicyPerDeviceReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsUpdateAlertsPerPolicyPerDeviceReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertPerPolicyPerDeviceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertPerPolicyPerDeviceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getWindowsUpdateAlertSummaryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reports/getWindowsUpdateAlertSummaryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertSummaryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertSummaryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reports/getZebraFotaDeploymentReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/reports/getZebraFotaDeploymentReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementReportZebraFotaDeploymentReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReportZebraFotaDeploymentReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles",
+ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceAccessProfiles/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/resourceAccessProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementResourceAccessProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceAccessProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}",
+ "OutputType": "IMicrosoftGraphResourceOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphResourceOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementResourceOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceOperations",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/resourceOperations",
+ "OutputType": "IMicrosoftGraphResourceOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphResourceOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementResourceOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceOperations/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/resourceOperations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementResourceOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}/getScopesForUser(userid='{userid}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}/getScopesForUser(userid='{userid}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementResourceOperationScopeForUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementResourceOperationScopeForUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyJust"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyJust",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy",
"OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyLatestUpgradeDefaultBaselinePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyLatestUpgradeDefaultBaselinePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementReusableSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReusableSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reusableSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/reusableSettings",
+ "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementReusableSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReusableSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/reusableSettings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/reusableSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementReusableSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementReusableSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleAssignments",
+ "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/{roleScopeTag-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/{roleScopeTag-id}",
"OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags",
"OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}",
+ "OutputType": "IMicrosoftGraphRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions",
+ "OutputType": "IMicrosoftGraphRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}",
+ "OutputType": "IMicrosoftGraphRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments",
+ "OutputType": "IMicrosoftGraphRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
+ "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
+ "Permissions": [
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition",
+ "OutputType": "IMicrosoftGraphRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementRBAC.ReadWrite.All",
"Description": "Read and write Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}",
+ "OutputType": "IMicrosoftGraphRoleScopeTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleScopeTags",
+ "OutputType": "IMicrosoftGraphRoleScopeTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}",
"OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments",
"OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getRoleScopeTagsByIds(ids={ids})",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/getRoleScopeTagsByIds(ids={ids})",
"OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagById"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagById",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getRoleScopeTagsByResource(resource='{resource}')",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/getRoleScopeTagsByResource(resource='{resource}')",
"OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagByResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagByResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/roleScopeTags/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/roleScopeTags/getRoleScopeTagsById",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/roleScopeTags/getRoleScopeTagsById",
+ "OutputType": "IMicrosoftGraphRoleScopeTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleScopeTag",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementRoleScopeTagRoleScopeTagById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementRoleScopeTagRoleScopeTagById",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}",
"OutputType": "IMicrosoftGraphDeviceManagementScript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceManagementScripts",
"OutputType": "IMicrosoftGraphDeviceManagementScript",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScript"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScript",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScriptAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/deviceManagementScripts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementScriptCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice",
+ "OutputType": "IMicrosoftGraphManagedDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateManagedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateManagedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptGroupAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptGroupAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptRunSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptRunSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptUserRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptUserRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScriptUserRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptUserRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptUserRunStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptUserRunStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates",
+ "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementSettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementSettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementSettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementSettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/softwareUpdateStatusSummary",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/softwareUpdateStatusSummary",
+ "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}')",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementSuggestedEnrollmentLimit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementSuggestedEnrollmentLimit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}",
+ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/telecomExpenseManagementPartners",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/telecomExpenseManagementPartners",
+ "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/telecomExpenseManagementPartners/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/telecomExpenseManagementPartners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo",
+ "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}",
"OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories",
"OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}",
"OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings",
"OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}",
"OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions",
"OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}",
"OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings",
"OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings",
+ "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTemplateSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTemplateSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTemplateSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/tenantAttachRBAC/getState",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/tenantAttachRBAC/getState",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementTenantAttachRbacState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTenantAttachRbacState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}",
+ "OutputType": "IMicrosoftGraphTermsAndConditions",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditions",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions",
+ "OutputType": "IMicrosoftGraphTermsAndConditions",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditions",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTermAndCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions",
+ "OutputType": "IMicrosoftGraphTermsAndConditions",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditions",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments",
+ "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions",
+ "OutputType": "IMicrosoftGraphTermsAndConditions",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermsAndConditions",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentTermAndCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentTermAndCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}",
+ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/troubleshootingEvents",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/troubleshootingEvents",
+ "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/troubleshootingEvents/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/troubleshootingEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementTroubleshootingEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementTroubleshootingEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/{userExperienceAnalyticsAnomaly-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/{userExperienceAnalyticsAnomaly-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverviewCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverviewCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpactCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpactCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpactCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpactCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScoreCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScoreCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess",
- "Method": "GET",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent",
"OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/$count",
"Module": "Beta.DeviceManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcessCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcessCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsModelScores",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsModelScores",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScoreCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScoreCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsOverview",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsOverview",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticOverview",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementManagedDevices.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune devices",
+ "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance",
+ "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}",
+ "OutputType": "IMicrosoftGraphUserPfxCertificate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserPfxCertificate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementUserPfxCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserPfxCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userPfxCertificates",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/userPfxCertificates",
+ "OutputType": "IMicrosoftGraphUserPfxCertificate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserPfxCertificate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementUserPfxCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserPfxCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/userPfxCertificates/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/userPfxCertificates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementUserPfxCertificateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementUserPfxCertificateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint",
"OutputType": "IMicrosoftGraphVirtualEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}",
+ "OutputType": "IMicrosoftGraphCloudPcAuditEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcAuditEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/auditEvents",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/auditEvents",
+ "OutputType": "IMicrosoftGraphCloudPcAuditEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcAuditEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventAuditActivityType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventAuditActivityType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/auditEvents/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/auditEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}",
"OutputType": "IMicrosoftGraphCloudPcBulkAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/bulkActions",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/bulkActions",
"OutputType": "IMicrosoftGraphCloudPcBulkAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/bulkActions/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/bulkActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}",
+ "OutputType": "IMicrosoftGraphCloudPc",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPc",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs",
+ "OutputType": "IMicrosoftGraphCloudPc",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPc",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcConnectivityHistory",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcConnectivityHistory",
+ "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcConnectivityHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcConnectivityHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcFrontlineCloudPcAccessState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcFrontlineCloudPcAccessState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcLaunchInfo",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcLaunchInfo",
"OutputType": "IMicrosoftGraphCloudPcLaunchInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcLaunchInfo"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcLaunchInfo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/getProvisionedCloudPCs(groupId='{groupId}',servicePlanId='{servicePlanId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/getProvisionedCloudPCs(groupId='{groupId}',servicePlanId='{servicePlanId}')",
+ "OutputType": "IMicrosoftGraphCloudPc",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPc",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcProvisionedCloudPc"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcProvisionedCloudPc",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcShiftWorkCloudPcAccessState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcShiftWorkCloudPcAccessState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getSupportedCloudPcRemoteActions",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getSupportedCloudPcRemoteActions",
+ "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcSupportedCloudPcRemoteAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcSupportedCloudPcRemoteAction",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping",
+ "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpccrosscloudgovernmentorganizationmapping-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}",
+ "OutputType": "IMicrosoftGraphCloudPcDeviceImage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcDeviceImage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/deviceImages",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/deviceImages",
+ "OutputType": "IMicrosoftGraphCloudPcDeviceImage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcDeviceImage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/deviceImages/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/deviceImages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages",
+ "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageSourceImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageSourceImage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/getEffectivePermissions",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/getEffectivePermissions",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointEffectivePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointEffectivePermission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}",
+ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcexternalpartnersetting-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings",
+ "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-externalpartnersettings?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}",
"OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcfrontlineserviceplan-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans",
"OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-frontlineserviceplans?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}",
+ "OutputType": "IMicrosoftGraphCloudPcGalleryImage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcGalleryImage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/galleryImages",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/galleryImages",
+ "OutputType": "IMicrosoftGraphCloudPcGalleryImage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcGalleryImage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/galleryImages/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/galleryImages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}",
+ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections",
+ "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/organizationSettings",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/organizationSettings",
+ "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointOrganizationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointOrganizationSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcorganizationsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}",
+ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies",
+ "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}",
"OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments",
"OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports",
"OutputType": "IMicrosoftGraphCloudPcReports",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getActionStatusReports",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getActionStatusReports",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportActionStatusReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportActionStatusReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getactionstatusreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcPerformanceReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcPerformanceReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcPerformanceReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcPerformanceReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcRecommendationReports",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcRecommendationReports",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcRecommendationReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcRecommendationReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getConnectionQualityReports",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getConnectionQualityReports",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportConnectionQualityReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportConnectionQualityReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/retrieveCrossRegionDisasterRecoveryReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/retrieveCrossRegionDisasterRecoveryReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve",
"RetrieveExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCrossRegionDisasterRecoveryReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCrossRegionDisasterRecoveryReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportDailyAggregatedRemoteConnectionReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportDailyAggregatedRemoteConnectionReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}",
"OutputType": "IMicrosoftGraphCloudPcExportJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcexportjob-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs",
"OutputType": "IMicrosoftGraphCloudPcExportJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getFrontlineReport",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getFrontlineReport",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportFrontlineReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportFrontlineReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getfrontlinereport?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getInaccessibleCloudPcReports",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getInaccessibleCloudPcReports",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportInaccessibleCloudPcReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportInaccessibleCloudPcReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports",
"Module": "Beta.DeviceManagement.Actions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRawRemoteConnectionReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRawRemoteConnectionReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionLatency(cloudPcId='{cloudPcId}')",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionLatency(cloudPcId='{cloudPcId}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionLatency"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionLatency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionStatus(cloudPcId='{cloudPcId}')",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionStatus(cloudPcId='{cloudPcId}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionStatus",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getRemoteConnectionHistoricalReports",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getRemoteConnectionHistoricalReports",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRemoteConnectionHistoricalReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRemoteConnectionHistoricalReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportSharedUseLicenseUsageReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportSharedUseLicenseUsageReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/reports/getTotalAggregatedRemoteConnectionReports",
"Module": "Beta.DeviceManagement.Actions",
+ "Uri": "/deviceManagement/virtualEndpoint/reports/getTotalAggregatedRemoteConnectionReports",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportTotalAggregatedRemoteConnectionReport"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportTotalAggregatedRemoteConnectionReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/retrieveScopedPermissions",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/retrieveScopedPermissions",
"OutputType": "IMicrosoftGraphCloudPcScopedPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointScopedPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointScopedPermission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}",
"OutputType": "IMicrosoftGraphCloudPcServicePlan",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/servicePlans",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/servicePlans",
+ "OutputType": "IMicrosoftGraphCloudPcServicePlan",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcServicePlan",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-serviceplans?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/servicePlans/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/servicePlans/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}",
+ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcshareduseserviceplan-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans",
+ "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-shareduseserviceplans?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}",
+ "OutputType": "IMicrosoftGraphCloudPcSnapshot",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSnapshot",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/snapshots",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/snapshots",
+ "OutputType": "IMicrosoftGraphCloudPcSnapshot",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSnapshot",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-snapshots?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/snapshots/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/snapshots/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/snapshots/getStorageAccounts(subscriptionId='{subscriptionId}')",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/snapshots/getStorageAccounts(subscriptionId='{subscriptionId}')",
+ "OutputType": "IMicrosoftGraphCloudPcForensicStorageAccount",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcForensicStorageAccount",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotStorageAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotStorageAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/snapshots/getSubscriptions",
"Module": "Beta.DeviceManagement.Functions",
+ "Uri": "/deviceManagement/virtualEndpoint/snapshots/getSubscriptions",
+ "OutputType": "IMicrosoftGraphCloudPcSubscription",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSubscription",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}",
"OutputType": "IMicrosoftGraphCloudPcSupportedRegion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/supportedRegions",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/supportedRegions",
+ "OutputType": "IMicrosoftGraphCloudPcSupportedRegion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcSupportedRegion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-supportedregions?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/retrieveTenantEncryptionSetting",
"Module": "Beta.DeviceManagement.Functions",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/retrieveTenantEncryptionSetting",
"OutputType": "IMicrosoftGraphCloudPcTenantEncryptionSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Retrieve"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointTenantEncryptionSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointTenantEncryptionSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}",
+ "OutputType": "IMicrosoftGraphCloudPcUserSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcUserSetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings",
+ "OutputType": "IMicrosoftGraphCloudPcUserSetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCloudPcUserSetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0"
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}",
"OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments",
"OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Administration",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/virtualEndpoint/userSettings/$count",
"Module": "Beta.DeviceManagement.Administration",
+ "Uri": "/deviceManagement/virtualEndpoint/userSettings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments",
"OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityIntendedDeploymentProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityIntendedDeploymentProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsAutopilotSettings",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsAutopilotSettings",
+ "OutputType": "IMicrosoftGraphWindowsAutopilotSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsAutopilotSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsAutopilotSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsAutopilotSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}",
+ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles",
+ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}",
+ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments",
+ "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries",
+ "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementApps.Read.All",
"Description": "Read Microsoft Intune apps",
"FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementApps.ReadWrite.All",
"Description": "Read and write Microsoft Intune apps",
"FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}",
+ "OutputType": "IMicrosoftGraphWindowsMalwareInformation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsMalwareInformation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation",
+ "OutputType": "IMicrosoftGraphWindowsMalwareInformation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsMalwareInformation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}",
+ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates",
+ "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementManagedDevices.Read.All",
"Description": "Read Microsoft Intune devices",
"FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementManagedDevices.ReadWrite.All",
"Description": "Read and write Microsoft Intune devices",
"FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}",
+ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles",
+ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}",
+ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments",
+ "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/deviceManagement/windowsQualityUpdateProfiles/$count",
"Module": "Beta.DeviceManagement",
+ "Uri": "/deviceManagement/windowsQualityUpdateProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/getMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/getMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDeviceMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/memberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-memberof?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/memberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/memberOf/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/memberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredOwners",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-registeredowners?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/endpoint",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/$ref",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredOwners/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-registeredowners?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/registeredOwners/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredOwners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredOwners/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredOwners/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredUsers",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-registeredusers?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/endpoint",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredUserAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/$ref",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredUsers/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceRegisteredUserByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-registeredusers?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/registeredUsers/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/registeredUsers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/registeredUsers/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/registeredUsers/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceRegisteredUserCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceRegisteredUserCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/transitiveMemberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-transitivememberof?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/usageRights/{usageRight-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/{device-id}/usageRights/{usageRight-id}",
"OutputType": "IMicrosoftGraphUsageRight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceUsageRights"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceUsageRights",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/{device-id}/usageRights",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/usageRights",
+ "OutputType": "IMicrosoftGraphUsageRight",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUsageRight",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDeviceUsageRights"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceUsageRights",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list-usagerights?view=graph-rest-1.0"
},
{
- "Uri": "/devices/{device-id}/usageRights/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/devices/{device-id}/usageRights/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Device.Read.All",
"Description": "Read all devices",
"FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDeviceUsageRightsCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDeviceUsageRightsCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/devices/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/devices/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDeviceUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDeviceUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/directory",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory",
"OutputType": "IMicrosoftGraphDirectory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/delta",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application",
+ "OutputType": "IMicrosoftGraphApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device",
+ "OutputType": "IMicrosoftGraphDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact",
+ "OutputType": "IMicrosoftGraphOrgContact",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user",
+ "OutputType": "IMicrosoftGraphUser",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AdministrativeUnit.Read.All",
"Description": "Read all administrative units",
"FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AdministrativeUnit.ReadWrite.All",
- "Description": "Read and write all administrative units",
- "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "AdministrativeUnit.ReadWrite.All",
+ "Description": "Read and write all administrative units",
+ "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}",
+ "OutputType": "IMicrosoftGraphScopedRoleMembership",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get-scopedrolemembers?view=graph-rest-1.0"
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers",
+ "OutputType": "IMicrosoftGraphScopedRoleMembership",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-list-scopedrolemembers?view=graph-rest-1.0"
},
{
- "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/attributeSets/{attributeSet-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/attributeSets/{attributeSet-id}",
+ "OutputType": "IMicrosoftGraphAttributeSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAttributeSet",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryAttributeSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAttributeSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attributeset-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/attributeSets",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/attributeSets",
+ "OutputType": "IMicrosoftGraphAttributeSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAttributeSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryAttributeSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAttributeSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-attributesets?view=graph-rest-1.0"
},
{
- "Uri": "/directory/attributeSets/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/attributeSets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryAttributeSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryAttributeSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/certificateAuthorities",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities",
"OutputType": "IMicrosoftGraphCertificateAuthorityPath",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthority"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthority",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}",
"OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/certificatebasedapplicationconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations",
"OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/certificateauthoritypath-list-certificatebasedapplicationconfigurations?view=graph-rest-1.0"
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}",
"OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities",
"OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthorityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthorityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}",
+ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customsecurityattributedefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions",
+ "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-customsecurityattributedefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}",
+ "OutputType": "IMicrosoftGraphAllowedValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAllowedValue",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/allowedvalue-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues",
+ "OutputType": "IMicrosoftGraphAllowedValue",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAllowedValue",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customsecurityattributedefinition-list-allowedvalues?view=graph-rest-1.0"
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/customSecurityAttributeDefinitions/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/customSecurityAttributeDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomSecAttributeDefinition.Read.All",
"Description": "Read custom security attribute definitions",
"FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomSecAttributeDefinition.ReadWrite.All",
"Description": "Read and write custom security attribute definitions",
"FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/administrativeUnit",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeletedItemAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryDeletedItemById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryDeletedItemById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deletedItems/administrativeUnit/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/application/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/device/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeletedItemCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeletedItemCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryDeletedItemMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryDeletedItemMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryDeletedItemMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryDeletedItemMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}",
"OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryDeviceLocalCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeviceLocalCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicelocalcredentialinfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deviceLocalCredentials",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deviceLocalCredentials",
"OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryDeviceLocalCredential"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeviceLocalCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-devicelocalcredentials?view=graph-rest-1.0"
},
{
- "Uri": "/directory/deviceLocalCredentials/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/deviceLocalCredentials/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryDeviceLocalCredentialCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryDeviceLocalCredentialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}",
"OutputType": "IMicrosoftGraphExternalUserProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryExternalUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryExternalUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externaluserprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/externalUserProfiles",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/externalUserProfiles",
"OutputType": "IMicrosoftGraphExternalUserProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryExternalUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryExternalUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-externaluserprofiles?view=graph-rest-1.0"
},
{
- "Uri": "/directory/externalUserProfiles/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/externalUserProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryExternalUserProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryExternalUserProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}",
"OutputType": "IMicrosoftGraphFeatureRolloutPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies",
"OutputType": "IMicrosoftGraphFeatureRolloutPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/featureRolloutPolicies/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/featureRolloutPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/federationConfigurations/{identityProviderBase-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/federationConfigurations/{identityProviderBase-id}",
+ "OutputType": "IMicrosoftGraphIdentityProviderBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryFederationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFederationConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/federationConfigurations",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/federationConfigurations",
+ "OutputType": "IMicrosoftGraphIdentityProviderBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryFederationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFederationConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/federationConfigurations/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/federationConfigurations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryFederationConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryFederationConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/impactedResources/{impactedResource-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/impactedResources/{impactedResource-id}",
"OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryImpactedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryImpactedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/impactedResources",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/impactedResources",
"OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryImpactedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryImpactedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/impactedResources/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/impactedResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryImpactedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryImpactedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}",
+ "OutputType": "IMicrosoftGraphInboundSharedUserProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInboundSharedUserProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryInboundSharedUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryInboundSharedUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/inboundSharedUserProfiles",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/inboundSharedUserProfiles",
+ "OutputType": "IMicrosoftGraphInboundSharedUserProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read.All",
"Description": "Read all shared cross-tenant user profiles and export their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite.All",
"Description": "Read all shared cross-tenant user profiles and export or delete their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInboundSharedUserProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryInboundSharedUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryInboundSharedUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-inboundshareduserprofiles?view=graph-rest-1.0"
},
{
- "Uri": "/directory/inboundSharedUserProfiles/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/inboundSharedUserProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read.All",
"Description": "Read all shared cross-tenant user profiles and export their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite.All",
"Description": "Read all shared cross-tenant user profiles and export or delete their data",
"FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant without a signed-in user. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryInboundSharedUserProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryInboundSharedUserProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/{directoryObject-id}",
"Module": "Beta.DirectoryObjects",
- "Permissions": {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-1.0"
},
{
- "Uri": "/directoryObjects",
"Module": "Beta.DirectoryObjects",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/getByIds",
"Module": "Beta.DirectoryObjects",
- "Permissions": {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryObjectById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryObjectById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/directoryObjects/$count",
"Module": "Beta.DirectoryObjects",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryObjectCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryObjectCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/delta",
"Module": "Beta.DirectoryObjects",
- "Permissions": {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects/delta",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDirectoryObjectDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryObjectDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups",
"Module": "Beta.DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryObjectMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryObjectMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects",
"Module": "Beta.DirectoryObjects",
+ "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryObjectMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryObjectMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryObjects/getUserOwnedObjects",
"Module": "Beta.DirectoryObjects",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryObjects/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryObjectUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryObjectUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": {
- "Name": "OnPremDirectorySynchronization.ReadWrite.All",
- "Description": "Read and write all on-premises directory synchronization information",
- "FullDescription": "Allows the app to read and write all on-premises directory synchronization information for the organization, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}",
"OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryOnPremiseSynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOnPremiseSynchronization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onpremisesdirectorysynchronization-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/onPremisesSynchronization",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/onPremisesSynchronization",
+ "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OnPremDirectorySynchronization.Read.All",
"Description": "Read all on-premises directory synchronization information",
"FullDescription": "Allows the app to read all on-premises directory synchronization information for the organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OnPremDirectorySynchronization.ReadWrite.All",
"Description": "Read and write all on-premises directory synchronization information",
"FullDescription": "Allows the app to read and write all on-premises directory synchronization information for the organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryOnPremiseSynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOnPremiseSynchronization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/onPremisesSynchronization/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/onPremisesSynchronization/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OnPremDirectorySynchronization.Read.All",
"Description": "Read all on-premises directory synchronization information",
"FullDescription": "Allows the app to read all on-premises directory synchronization information for the organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OnPremDirectorySynchronization.ReadWrite.All",
"Description": "Read and write all on-premises directory synchronization information",
"FullDescription": "Allows the app to read and write all on-premises directory synchronization information for the organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryOnPremiseSynchronizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOnPremiseSynchronizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}",
+ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOutboundSharedUserProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outboundshareduserprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/outboundSharedUserProfiles",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/outboundSharedUserProfiles",
+ "OutputType": "IMicrosoftGraphOutboundSharedUserProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOutboundSharedUserProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-outboundshareduserprofiles?view=graph-rest-1.0"
},
{
- "Uri": "/directory/outboundSharedUserProfiles/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/outboundSharedUserProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
- },
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants",
+ "OutputType": "IMicrosoftGraphTenantReference",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTenantReference",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outboundshareduserprofile-list-tenants?view=graph-rest-1.0"
},
{
- "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CrossTenantUserProfileSharing.Read",
"Description": "Read shared cross-tenant user profile and export data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "CrossTenantUserProfileSharing.Read.All",
- "Description": "Read any shared cross-tenant user profiles and export data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
+ "Description": "Read any shared cross-tenant user profiles and export or delete data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "CrossTenantUserProfileSharing.ReadWrite",
"Description": "Read shared cross-tenant user profile and export or delete data",
"FullDescription": "Allows the application to list and query shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove your external user data (e.g. customer content or system-generated logs), associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "CrossTenantUserProfileSharing.ReadWrite.All",
- "Description": "Read any shared cross-tenant user profiles and export or delete data",
- "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export and remove external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
- "IsAdmin": true
+ "Name": "CrossTenantUserProfileSharing.Read.All",
+ "Description": "Read any shared cross-tenant user profiles and export data",
+ "FullDescription": "Allows the application to list and query any shared user profile information associated with the current tenant on your behalf. It also permits the application to export external user data (e.g. customer content or system-generated logs), for any user associated with the current tenant on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}",
"OutputType": "IMicrosoftGraphPendingExternalUserProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryPendingExternalUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryPendingExternalUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/pendingexternaluserprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/pendingExternalUserProfiles",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/pendingExternalUserProfiles",
"OutputType": "IMicrosoftGraphPendingExternalUserProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryPendingExternalUserProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryPendingExternalUserProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-pendingexternaluserprofile?view=graph-rest-1.0"
},
{
- "Uri": "/directory/pendingExternalUserProfiles/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/pendingExternalUserProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryPendingExternalUserProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryPendingExternalUserProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/recommendations/{recommendation-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations/{recommendation-id}",
+ "OutputType": "IMicrosoftGraphRecommendation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRecommendation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRecommendation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/recommendations",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations",
+ "OutputType": "IMicrosoftGraphRecommendation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRecommendation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRecommendation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-recommendation?view=graph-rest-1.0"
},
{
- "Uri": "/directory/recommendations/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryRecommendationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}",
+ "OutputType": "IMicrosoftGraphImpactedResource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRecommendationImpactedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendationImpactedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/recommendations/{recommendation-id}/impactedResources",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations/{recommendation-id}/impactedResources",
+ "OutputType": "IMicrosoftGraphImpactedResource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphImpactedResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRecommendationImpactedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendationImpactedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DirectoryRecommendations.Read.All",
"Description": "Read all Azure AD recommendations",
"FullDescription": "Allows the app to read all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DirectoryRecommendations.ReadWrite.All",
"Description": "Read and update all Azure AD recommendations",
"FullDescription": "Allows the app to read and update all Azure AD recommendations, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRecommendationImpactedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRecommendationImpactedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}",
+ "OutputType": "IMicrosoftGraphDirectoryRole",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRole",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles",
+ "OutputType": "IMicrosoftGraphDirectoryRole",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRole",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')",
+ "OutputType": "IMicrosoftGraphDirectoryRole",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleByRoleTemplateId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleByRoleTemplateId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryRoleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/delta",
+ "OutputType": "IMicrosoftGraphDirectoryRole",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDirectoryRoleDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}/members",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/application",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/device",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/group",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/user",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/$ref",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleMemberCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleMemberCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}",
"OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleScopedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleScopedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers",
+ "OutputType": "IMicrosoftGraphScopedRoleMembership",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphScopedRoleMembership",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleScopedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleScopedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list-scopedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleScopedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleScopedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}",
+ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRoleTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectoryRoleTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoleTemplates",
+ "OutputType": "IMicrosoftGraphDirectoryRoleTemplate",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryRoleTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectoryRoleTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleTemplateById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoleTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directoryRoleTemplates/delta",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectoryRoleTemplateDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directoryRoleTemplates/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoleTemplates/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleTemplateUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleTemplateUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/directoryRoles/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directoryRoles/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectoryRoleUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectoryRoleUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/settings/{directorySetting-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/settings/{directorySetting-id}",
+ "OutputType": "IMicrosoftGraphDirectorySetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-get?view=graph-rest-1.0"
},
{
- "Uri": "/settings",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/settings",
+ "OutputType": "IMicrosoftGraphDirectorySetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectorySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-settings?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}",
+ "OutputType": "IMicrosoftGraphDirectorySettingTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySettingTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySettingTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySettingTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directorySettingTemplates",
+ "OutputType": "IMicrosoftGraphDirectorySettingTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySettingTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectorySettingTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySettingTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-list?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectorySettingTemplateById"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectorySettingTemplateById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directorySettingTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectorySettingTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySettingTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directorySettingTemplates/delta",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/directorySettingTemplates/delta",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaDirectorySettingTemplateDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySettingTemplateDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectorySettingTemplateMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectorySettingTemplateMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaDirectorySettingTemplateMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectorySettingTemplateMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directorySettingTemplates/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directorySettingTemplates/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaDirectorySettingTemplateUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaDirectorySettingTemplateUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}",
"OutputType": "IMicrosoftGraphSharedEmailDomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySharedEmailDomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySharedEmailDomain",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/sharedEmailDomains",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/sharedEmailDomains",
"OutputType": "IMicrosoftGraphSharedEmailDomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectorySharedEmailDomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySharedEmailDomain",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/sharedEmailDomains/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/sharedEmailDomains/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectorySharedEmailDomainCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySharedEmailDomainCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/directory/subscriptions/{companySubscription-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/subscriptions/{companySubscription-id}",
"OutputType": "IMicrosoftGraphCompanySubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySubscription",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/companysubscription-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/subscriptions",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/subscriptions",
"OutputType": "IMicrosoftGraphCompanySubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDirectorySubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySubscription",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-subscriptions?view=graph-rest-1.0"
},
{
- "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')",
"OutputType": "IMicrosoftGraphCompanySubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySubscriptionByCommerceSubscriptionId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySubscriptionByCommerceSubscriptionId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/companysubscription-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')",
"OutputType": "IMicrosoftGraphCompanySubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDirectorySubscriptionByOcpSubscriptionId"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySubscriptionByOcpSubscriptionId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/companysubscription-get?view=graph-rest-1.0"
},
{
- "Uri": "/directory/subscriptions/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/directory/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDirectorySubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDirectorySubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}",
+ "OutputType": "IMicrosoftGraphDomain",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDomain",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-1.0"
},
{
- "Uri": "/domains",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains",
+ "OutputType": "IMicrosoftGraphDomain",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDomain",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-1.0"
},
{
- "Uri": "/domains/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaDomainCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}",
+ "OutputType": "IMicrosoftGraphInternalDomainFederation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInternalDomainFederation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainFederationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainFederationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/internaldomainfederation-get?view=graph-rest-1.0"
},
{
- "Uri": "/domains/{domain-id}/federationConfiguration",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/federationConfiguration",
"OutputType": "IMicrosoftGraphInternalDomainFederation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomainFederationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainFederationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list-federationconfiguration?view=graph-rest-1.0"
},
{
- "Uri": "/domains/{domain-id}/federationConfiguration/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/federationConfiguration/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainFederationConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainFederationConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainNameReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainNameReference",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/domainNameReferences",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/domainNameReferences",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomainNameReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainNameReference",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list-domainnamereferences?view=graph-rest-1.0"
},
{
- "Uri": "/domains/{domain-id}/domainNameReferences/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/domainNameReferences/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainNameReferenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainNameReferenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}",
"OutputType": "IMicrosoftGraphDomainDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainServiceConfigurationRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainServiceConfigurationRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/serviceConfigurationRecords",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/serviceConfigurationRecords",
+ "OutputType": "IMicrosoftGraphDomainDnsRecord",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDomainDnsRecord",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomainServiceConfigurationRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainServiceConfigurationRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list-serviceconfigurationrecords?view=graph-rest-1.0"
},
{
- "Uri": "/domains/{domain-id}/serviceConfigurationRecords/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/serviceConfigurationRecords/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainServiceConfigurationRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainServiceConfigurationRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}",
"OutputType": "IMicrosoftGraphSharedEmailDomainInvitation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainSharedEmailDomainInvitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainSharedEmailDomainInvitation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations",
"OutputType": "IMicrosoftGraphSharedEmailDomainInvitation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomainSharedEmailDomainInvitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainSharedEmailDomainInvitation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainSharedEmailDomainInvitationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainSharedEmailDomainInvitationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}",
"OutputType": "IMicrosoftGraphDomainDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainVerificationDnsRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainVerificationDnsRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/domains/{domain-id}/verificationDnsRecords",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/verificationDnsRecords",
+ "OutputType": "IMicrosoftGraphDomainDnsRecord",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDomainDnsRecord",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDomainVerificationDnsRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainVerificationDnsRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list-verificationdnsrecords?view=graph-rest-1.0"
},
{
- "Uri": "/domains/{domain-id}/verificationDnsRecords/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/domains/{domain-id}/verificationDnsRecords/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Domain.Read.All",
"Description": "Read domains",
"FullDescription": "Allows the app to read all domain properties without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Domain.ReadWrite.All",
"Description": "Read and write domains",
"FullDescription": "Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDomainVerificationDnsRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDomainVerificationDnsRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}",
+ "OutputType": "IMicrosoftGraphDrive",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/activities",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/activities",
+ "OutputType": "IMicrosoftGraphItemActivityOld",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/activities-list?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/bundles/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/bundles/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveBundle"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveBundle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/bundles",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/bundles",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveBundle"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveBundle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveBundleContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveBundleContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveBundleContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveBundleContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/bundles/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/bundles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveBundleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveBundleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveContentTypeBase"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveContentTypeBase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveContentTypeBaseTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveContentTypeBaseTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/following/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/following/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveFollowing"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveFollowing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/following",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/following",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveFollowing"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveFollowing",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/following/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/following/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveFollowingContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveFollowingContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveFollowingContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveFollowingContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/following/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/following/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveFollowingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveFollowingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/activities",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/activities",
+ "OutputType": "IMicrosoftGraphItemActivityOld",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics",
+ "OutputType": "IMicrosoftGraphItemAnalytics",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalytic",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemanalytics-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays",
+ "OutputType": "IMicrosoftGraphItemActivityStat",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime",
+ "OutputType": "IMicrosoftGraphItemActivityStat",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/children",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/children",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemChildContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemChildContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemChildContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemChildContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/$count",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/content",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/content",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaDriveItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}",
+ "OutputType": "IMicrosoftGraphPermission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions",
+ "OutputType": "IMicrosoftGraphPermission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/$count",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemPermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemPermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel",
"OutputType": "IMicrosoftGraphItemRetentionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemRetentionLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemThumbnail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails",
+ "OutputType": "IMicrosoftGraphThumbnailSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemThumbnail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-thumbnails?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemThumbnailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemThumbnailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}",
+ "OutputType": "IMicrosoftGraphDriveItemVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions",
+ "OutputType": "IMicrosoftGraphDriveItemVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemVersionContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemVersionContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveList"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/contentTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/contentTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/drive",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/delta",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/delta",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaDriveListItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/operations",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/operations/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/list/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/list/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveListSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveListSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRoot"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalytic",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemanalytics-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/analytics/allTime",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/analytics/allTime",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/children/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/children/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/children",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/children",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootChildContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootChildContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootChildContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootChildContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/children/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/delta",
"Module": "Beta.Files",
+ "Uri": "/drives/{drive-id}/root/delta",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaDriveRootDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/permissions/{permission-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/permissions/{permission-id}",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/permissions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/permissions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/permissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootPermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootPermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/retentionLabel",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/retentionLabel",
"OutputType": "IMicrosoftGraphItemRetentionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootRetentionLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootThumbnail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/thumbnails",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/thumbnails",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootThumbnail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-thumbnails?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/thumbnails/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/thumbnails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootThumbnailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootThumbnailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/versions",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveRootVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootVersionContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootVersionContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/root/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/root/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveRootVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveRootVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/special/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/special/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveSpecial"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveSpecial",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-get-specialfolder?view=graph-rest-1.0"
},
{
- "Uri": "/drives/{drive-id}/special",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/special",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaDriveSpecial"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveSpecial",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/special/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/special/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveSpecialContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveSpecialContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveSpecialContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveSpecialContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/drives/{drive-id}/special/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/drives/{drive-id}/special/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaDriveSpecialCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaDriveSpecialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClass",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes",
"Module": "Beta.Education",
+ "Uri": "/education/classes",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClass",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationroot-list-classes?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}",
+ "OutputType": "IMicrosoftGraphEducationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments",
+ "OutputType": "IMicrosoftGraphEducationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-assignments?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}",
+ "OutputType": "IMicrosoftGraphEducationCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentCategories",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentCategories",
+ "OutputType": "IMicrosoftGraphEducationCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaEducationClassAssignmentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentCategoryByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCategoryByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentCategories/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentCategories/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaEducationClassAssignmentCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentCategories/delta",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentCategories/delta",
+ "OutputType": "IMicrosoftGraphEducationCategory",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaEducationClassAssignmentCategoryDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCategoryDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentDefaults",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentDefaults",
+ "OutputType": "IMicrosoftGraphEducationAssignmentDefaults",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignmentDefaults",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentDefault"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentDefault",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignmentdefaults-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/delta",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/delta",
+ "OutputType": "IMicrosoftGraphEducationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory",
"OutputType": "IMicrosoftGraphEducationGradingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentGradingCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentGradingCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingScheme",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingScheme",
"OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentGradingScheme",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
+ "OutputType": "IMicrosoftGraphEducationAssignmentResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignmentresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources",
+ "OutputType": "IMicrosoftGraphEducationAssignmentResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
+ "OutputType": "IMicrosoftGraphEducationAssignmentResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric",
+ "OutputType": "IMicrosoftGraphEducationRubric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
- "Variants": [
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
+ "Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentRubricByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentRubricByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings",
+ "OutputType": "IMicrosoftGraphEducationAssignmentSettings",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignmentSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignmentsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/defaultGradingScheme",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/defaultGradingScheme",
"OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingDefaultGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingDefaultGradingScheme",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}",
"OutputType": "IMicrosoftGraphEducationGradingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories",
"OutputType": "IMicrosoftGraphEducationGradingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}",
+ "OutputType": "IMicrosoftGraphEducationGradingScheme",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationgradingscheme-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes",
"OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSettingGradingSchemeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSettingGradingSchemeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
+ "OutputType": "IMicrosoftGraphEducationSubmission",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions",
+ "OutputType": "IMicrosoftGraphEducationSubmission",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
+ "OutputType": "IMicrosoftGraphEducationOutcome",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAssignments.Read",
"Description": "View your assignments and grades",
"FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.Read.All",
"Description": "Read all class assignments with grades",
"FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite.All",
"Description": "Create, read, update and delete all class assignments with grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAssignments.Read",
"Description": "View your assignments and grades",
"FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.Read.All",
"Description": "Read all class assignments with grades",
"FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite.All",
"Description": "Create, read, update and delete all class assignments with grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcomeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcomeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmissionresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
+ "OutputType": "IMicrosoftGraphEducationSubmissionResource",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/delta",
"Module": "Beta.Education",
+ "Uri": "/education/classes/delta",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
- },
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadBasic.All",
"Description": "Read a limited subset of the organization's roster",
"FullDescription": "Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite",
"Description": "View and modify your school, class and user information",
"FullDescription": "Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaEducationClassDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/group",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/group",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "Name": "EduRoster.ReadBasic",
+ "Description": "View a limited subset of your school, class and user information",
+ "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadBasic",
- "Description": "View a limited subset of your school, class and user information",
- "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "Name": "EduRoster.Write",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduRoster.Write",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-get-group?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/members",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/members",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Member.Read.Hidden",
"Description": "Read all hidden memberships",
"FullDescription": "Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/members/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/members/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Member.Read.Hidden",
"Description": "Read all hidden memberships",
"FullDescription": "Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassMemberByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/members/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Member.Read.Hidden",
"Description": "Read all hidden memberships",
"FullDescription": "Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}",
"OutputType": "IMicrosoftGraphEducationModule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassModule"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/modules",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules",
"OutputType": "IMicrosoftGraphEducationModule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassModule"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-modules?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/modules/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassModuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}",
"OutputType": "IMicrosoftGraphEducationModuleResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassModuleResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModuleResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmoduleresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources",
"OutputType": "IMicrosoftGraphEducationModuleResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassModuleResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModuleResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassModuleResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassModuleResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}",
"OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassSchool",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/schools",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/schools",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassSchool",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-schools?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/schools/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/schools/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassSchoolCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassSchoolCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/classes/{educationClass-id}/teachers",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/teachers",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassTeacher"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassTeacher",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-teachers?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/teachers/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/teachers/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationClassTeacherByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassTeacherByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-list-teachers?view=graph-rest-1.0"
},
{
- "Uri": "/education/classes/{educationClass-id}/teachers/$count",
"Module": "Beta.Education",
+ "Uri": "/education/classes/{educationClass-id}/teachers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationClassTeacherCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationClassTeacherCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me",
"Module": "Beta.Education",
+ "Uri": "/education/me",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMe"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMe",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}",
"OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments",
"Module": "Beta.Education",
+ "Uri": "/education/me/assignments",
+ "OutputType": "IMicrosoftGraphEducationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-assignments?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/categories",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/categories",
"OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentCategoryByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentCategoryByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta",
"OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentCategoryDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentCategoryDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/$count",
"Module": "Beta.Education",
+ "Uri": "/education/me/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/delta",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/delta",
"OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaEducationMeAssignmentDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory",
"OutputType": "IMicrosoftGraphEducationGradingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentGradingCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentGradingCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/gradingScheme",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/gradingScheme",
"OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentGradingScheme",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignmentresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/rubric",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/rubric",
"OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentRubricByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentRubricByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
"OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions",
"OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
"OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcomeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcomeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmissionresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/classes/{educationClass-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/classes/{educationClass-id}",
"OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/classes",
"Module": "Beta.Education",
+ "Uri": "/education/me/classes",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeClass",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-classes?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/classes/$count",
"Module": "Beta.Education",
+ "Uri": "/education/me/classes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/rubrics/{educationRubric-id}",
"Module": "Beta.Education",
+ "Uri": "/education/me/rubrics/{educationRubric-id}",
+ "OutputType": "IMicrosoftGraphEducationRubric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationrubric-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/rubrics",
"Module": "Beta.Education",
+ "Uri": "/education/me/rubrics",
+ "OutputType": "IMicrosoftGraphEducationRubric",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-rubrics?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/rubrics/$count",
"Module": "Beta.Education",
+ "Uri": "/education/me/rubrics/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeRubricCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeRubricCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/schools/{educationSchool-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/schools/{educationSchool-id}",
"OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeSchool",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/schools",
"Module": "Beta.Education",
+ "Uri": "/education/me/schools",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeSchool",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-schools?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/schools/$count",
"Module": "Beta.Education",
+ "Uri": "/education/me/schools/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeSchoolCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeSchoolCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/taughtClasses/{educationClass-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/taughtClasses/{educationClass-id}",
"OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationMeTaughtClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeTaughtClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/taughtClasses",
"Module": "Beta.Education",
+ "Uri": "/education/me/taughtClasses",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeTaughtClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeTaughtClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/taughtClasses/$count",
"Module": "Beta.Education",
+ "Uri": "/education/me/taughtClasses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeTaughtClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeTaughtClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/user",
"Module": "Beta.Education",
+ "Uri": "/education/me/user",
+ "OutputType": "IMicrosoftGraphUser",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "Name": "EduRoster.ReadBasic",
+ "Description": "View a limited subset of your school, class and user information",
+ "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
- {
- "Name": "EduRoster.ReadBasic",
- "Description": "View a limited subset of your school, class and user information",
- "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.Write",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-get-user?view=graph-rest-1.0"
},
{
- "Uri": "/education/me/user/mailboxSettings",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/user/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/user/serviceProvisioningErrors",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/user/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationMeUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/me/user/serviceProvisioningErrors/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/me/user/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationMeUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationMeUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education",
"OutputType": "IMicrosoftGraphEducationRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationRoot"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationRoot",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/schools/{educationSchool-id}",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchool",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools",
"Module": "Beta.Education",
+ "Uri": "/education/schools",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchool",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationroot-list-schools?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/administrativeUnit",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/administrativeUnit",
+ "OutputType": "IMicrosoftGraphAdministrativeUnit",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "Name": "EduRoster.ReadBasic",
+ "Description": "View a limited subset of your school, class and user information",
+ "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "EduRoster.ReadBasic",
- "Description": "View a limited subset of your school, class and user information",
- "FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "Name": "EduRoster.Write",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduRoster.Write",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSchoolAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolAdministrativeUnit",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-get-administrativeUnit?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/classes",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/classes",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSchoolClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolClass",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-list-classes?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/classes/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/classes/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSchoolClassByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolClassByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-list-classes?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/classes/$count",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/classes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSchoolClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/schools/$count",
"Module": "Beta.Education",
+ "Uri": "/education/schools/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationSchoolCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/schools/delta",
"Module": "Beta.Education",
+ "Uri": "/education/schools/delta",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
- },
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadBasic.All",
"Description": "Read a limited subset of the organization's roster",
"FullDescription": "Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite",
"Description": "View and modify your school, class and user information",
"FullDescription": "Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.WriteWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaEducationSchoolDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/schools/{educationSchool-id}/users",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/users",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSchoolUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-list-users?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/users/$ref",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/users/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSchoolUserByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolUserByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-list-users?view=graph-rest-1.0"
},
{
- "Uri": "/education/schools/{educationSchool-id}/users/$count",
"Module": "Beta.Education",
+ "Uri": "/education/schools/{educationSchool-id}/users/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSchoolUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSchoolUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}",
+ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSynchronizationProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSynchronizationProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/synchronizationProfiles",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles",
+ "OutputType": "IMicrosoftGraphEducationSynchronizationProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSynchronizationProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSynchronizationProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-list?view=graph-rest-1.0"
},
{
- "Uri": "/education/synchronizationProfiles/$count",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationSynchronizationProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}",
"OutputType": "IMicrosoftGraphEducationSynchronizationError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSynchronizationProfileError"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfileError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors",
+ "OutputType": "IMicrosoftGraphEducationSynchronizationError",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSynchronizationError",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationSynchronizationProfileError"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfileError",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationerrors-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/$count",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSynchronizationProfileErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfileErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus",
"Module": "Beta.Education",
+ "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus",
+ "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduAdministration.Read",
"Description": "View your education app settings",
"FullDescription": "Allows the app to view the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.Read.All",
"Description": "Read Education app settings",
"FullDescription": "Read the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAdministration.ReadWrite",
"Description": "Manage your education app settings",
"FullDescription": "Allows the app to manage the state and settings of all Microsoft education apps on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAdministration.ReadWrite.All",
"Description": "Manage education app settings",
"FullDescription": "Manage the state and settings of all Microsoft education apps.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationSynchronizationProfileStatus"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationSynchronizationProfileStatus",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofilestatus-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaEducationUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users",
"Module": "Beta.Education",
+ "Uri": "/education/users",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationroot-list-users?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}",
"OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/assignments",
+ "OutputType": "IMicrosoftGraphEducationAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-assignments?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories",
"OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref",
"OutputType": null,
- "Method": "GET",
- "Variants": [
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentCategoryByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentCategoryByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta",
"OutputType": "IMicrosoftGraphEducationCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentCategoryDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentCategoryDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/$count",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/assignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduAssignments.Read",
- "Description": "View your assignments and grades",
- "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.Read.All",
- "Description": "Read all class assignments with grades",
- "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "EduAssignments.ReadBasic",
"Description": "View your assignments without grades",
"FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduAssignments.ReadBasic.All",
"Description": "Read all class assignments without grades",
"FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduAssignments.ReadWriteBasic",
+ "Description": "View and modify your assignments without grades",
+ "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWrite",
"Description": "View and modify your assignments and grades",
"FullDescription": "Allows the app to view and modify your assignments on your behalf including grades.",
- "IsAdmin": true
- },
- {
- "Name": "EduAssignments.ReadWrite.All",
- "Description": "Create, read, update and delete all class assignments with grades",
- "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduAssignments.ReadWriteBasic",
- "Description": "View and modify your assignments without grades",
- "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.",
- "IsAdmin": true
+ "Name": "EduAssignments.Read",
+ "Description": "View your assignments and grades",
+ "FullDescription": "Allows the app to view your assignments on your behalf including grades.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduAssignments.ReadWriteBasic.All",
"Description": "Create, read, update and delete all class assignments without grades",
"FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.ReadWrite.All",
+ "Description": "Create, read, update and delete all class assignments with grades",
+ "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduAssignments.Read.All",
+ "Description": "Read all class assignments with grades",
+ "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/delta",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/delta",
"OutputType": "IMicrosoftGraphEducationAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory",
"OutputType": "IMicrosoftGraphEducationGradingCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentGradingCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentGradingCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingScheme",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingScheme",
"OutputType": "IMicrosoftGraphEducationGradingScheme",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentGradingScheme"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentGradingScheme",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignmentresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationAssignmentResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric",
"OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentRubricByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentRubricByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-get-rubric?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}",
"OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions",
"OutputType": "IMicrosoftGraphEducationSubmission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-list-submissions?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}",
"OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes",
"OutputType": "IMicrosoftGraphEducationOutcome",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-outcomes?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcomeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcomeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmissionresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-list-resources?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources",
"OutputType": "IMicrosoftGraphEducationSubmissionResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}",
"OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/classes",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/classes",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserClass",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-classes?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/classes/$count",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/classes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/$count",
"Module": "Beta.Education",
+ "Uri": "/education/users/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EduRoster.Read.All",
"Description": "Read the organization's roster",
"FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEducationUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/delta",
"Module": "Beta.Education",
+ "Uri": "/education/users/delta",
+ "OutputType": "IMicrosoftGraphEducationUser",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read",
- "Description": "View your school, class and user information",
- "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
- },
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadBasic.All",
"Description": "Read a limited subset of the organization's roster",
"FullDescription": "Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite",
"Description": "View and modify your school, class and user information",
"FullDescription": "Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EduRoster.ReadWrite.All",
- "Description": "Read and write the organization's roster",
- "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "Name": "EduRoster.Read",
+ "Description": "View your school, class and user information",
+ "FullDescription": "Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EduRoster.WriteWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.ReadWrite.All",
+ "Description": "Read and write the organization's roster",
+ "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationUser",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaEducationUserDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/user/mailboxSettings",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/user/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}",
"OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationrubric-get?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/rubrics",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/rubrics",
"OutputType": "IMicrosoftGraphEducationRubric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserRubric"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserRubric",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-rubrics?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/rubrics/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/rubrics/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserRubricCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserRubricCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}",
"OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserSchool",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/schools",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/schools",
+ "OutputType": "IMicrosoftGraphEducationSchool",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationSchool",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserSchool"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserSchool",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-list-schools?view=graph-rest-1.0"
},
{
- "Uri": "/education/users/{educationUser-id}/schools/$count",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/schools/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserSchoolCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserSchoolCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}",
"Module": "Beta.Education",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}",
"OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserTaughtClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserTaughtClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/taughtClasses",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/taughtClasses",
+ "OutputType": "IMicrosoftGraphEducationClass",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEducationClass",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEducationUserTaughtClass"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserTaughtClass",
+ "ApiReferenceLink": null
},
{
- "Uri": "/education/users/{educationUser-id}/taughtClasses/$count",
"Module": "Beta.Education",
+ "Uri": "/education/users/{educationUser-id}/taughtClasses/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "EduRoster.Read.All",
- "Description": "Read the organization's roster",
- "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
- "IsAdmin": false
- },
{
"Name": "EduRoster.ReadBasic",
"Description": "View a limited subset of your school, class and user information",
"FullDescription": "Allows the app to view minimal information about both schools and classes in your organization and education-related information about you and other users on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "EduRoster.Read.All",
+ "Description": "Read the organization's roster",
+ "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EduRoster.ReadWrite.All",
"Description": "Read and write the organization's roster",
"FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEducationUserTaughtClassCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEducationUserTaughtClassCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}",
+ "OutputType": "IMicrosoftGraphAccessPackage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackage"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages",
+ "OutputType": "IMicrosoftGraphAccessPackage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackage"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackages?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write entitlement management resources",
"FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements",
- "Method": "POST",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageApplicablePolicyRequirement"
+ "Method": "POST",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageApplicablePolicyRequirement",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}",
"OutputType": "IMicrosoftGraphAccessPackageAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignments?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess",
"OutputType": "IMicrosoftGraphAccessPackageAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Access",
"Access1",
"AccessViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write entitlement management resources",
"FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignmentpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}",
"OutputType": "IMicrosoftGraphCustomExtensionHandler",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers",
"OutputType": "IMicrosoftGraphCustomExtensionHandler",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}",
"OutputType": "IMicrosoftGraphCustomExtensionStageSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings",
"OutputType": "IMicrosoftGraphCustomExtensionStageSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignmentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentresourcerole-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageassignmentresourceroles?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRoleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRoleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageCatalog",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageCatalog",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackagecatalog-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs",
+ "OutputType": "IMicrosoftGraphAccessPackageCatalog",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageCatalog",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackagecatalogs?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}",
+ "OutputType": "IMicrosoftGraphCustomCalloutExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomCalloutExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions",
+ "OutputType": "IMicrosoftGraphCustomCalloutExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomCalloutExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackagecatalog-list-accesspackagecustomworkflowextensions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources",
+ "OutputType": "IMicrosoftGraphAccessPackageResource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageResource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackagecatalog-list-accesspackageresources?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles",
+ "OutputType": "IMicrosoftGraphAccessPackageResourceRole",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageResourceRole",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceRole",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackagecatalog-list-accesspackageresourceroles?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes",
"OutputType": "IMicrosoftGraphAccessPackageResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}",
+ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customaccesspackageworkflowextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions",
+ "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackagecatalog-list-customaccesspackageworkflowextensions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages",
+ "OutputType": "IMicrosoftGraphAccessPackage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackage"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-list-incompatibleaccesspackages?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-list-incompatibleaccesspackages?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-list-incompatiblegroups?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-list-incompatiblegroups?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}",
"OutputType": "IMicrosoftGraphAccessPackage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith",
+ "OutputType": "IMicrosoftGraphAccessPackage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-list-accesspackagesincompatiblewith?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}",
"OutputType": "IMicrosoftGraphAccessPackageResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResources",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResources",
"OutputType": "IMicrosoftGraphAccessPackageResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageresourceenvironment-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments",
+ "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageresourceenvironment?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}",
"OutputType": "IMicrosoftGraphAccessPackageResourceRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests",
+ "OutputType": "IMicrosoftGraphAccessPackageResourceRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageResourceRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-accesspackageresourcerequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/assignmentRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/assignmentRequests",
+ "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAssignmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-assignmentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment",
"OutputType": "IMicrosoftGraphAccessPackageAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAssignmentRequestAccessPackageAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAssignmentRequestAccessPackageAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementAssignmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAssignmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization",
"OutputType": "IMicrosoftGraphConnectedOrganization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementAssignmentRequestRequestorConnectedOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementAssignmentRequestRequestorConnectedOrganization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}",
+ "OutputType": "IMicrosoftGraphConnectedOrganization",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConnectedOrganization",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectedorganization-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations",
+ "OutputType": "IMicrosoftGraphConnectedOrganization",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConnectedOrganization",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagement-list-connectedorganizations?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsor"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsor",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectedorganization-list-externalsponsors?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectedorganization-list-externalsponsors?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsor"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsor",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectedorganization-list-internalsponsors?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectedorganization-list-internalsponsors?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/settings",
"Module": "Beta.Identity.Governance",
- "Permissions": [
+ "Uri": "/identityGovernance/entitlementManagement/settings",
+ "OutputType": "IMicrosoftGraphEntitlementManagementSettings",
+ "ApiVersion": "beta",
+ "Permissions": [
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEntitlementManagementSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/entitlementmanagementsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}",
"OutputType": "IMicrosoftGraphAccessPackageSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/subjects",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/subjects",
"OutputType": "IMicrosoftGraphAccessPackageSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaEntitlementManagementSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')",
"OutputType": "IMicrosoftGraphAccessPackageSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementSubjectByObjectId"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSubjectByObjectId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}/connectedOrganization",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}/connectedOrganization",
"OutputType": "IMicrosoftGraphConnectedOrganization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaEntitlementManagementSubjectConnectedOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSubjectConnectedOrganization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/entitlementManagement/subjects/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/entitlementManagement/subjects/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaEntitlementManagementSubjectCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaEntitlementManagementSubjectCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external",
"OutputType": "IMicrosoftGraphExternalConnectorsExternal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternal"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/authorizationSystems/{authorizationSystem-id}",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/authorizationSystems/{authorizationSystem-id}",
"OutputType": "IMicrosoftGraphAuthorizationSystem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalAuthorizationSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalAuthorizationSystem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/authorizationSystems",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/authorizationSystems",
"OutputType": "IMicrosoftGraphAuthorizationSystem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalAuthorizationSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalAuthorizationSystem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-external-list-authorizationsystems?view=graph-rest-1.0"
},
{
- "Uri": "/external/authorizationSystems/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/authorizationSystems/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalAuthorizationSystemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalAuthorizationSystemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo",
"OutputType": "IMicrosoftGraphDataCollectionInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalAuthorizationSystemDataCollectionInfo"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalAuthorizationSystemDataCollectionInfo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}",
"Module": "Beta.Search",
+ "Uri": "/external/connections/{externalConnection-id}",
+ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalConnection.Read.All",
- "Description": "Read all external connections",
- "FullDescription": "Allows the app to read all external connections without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalConnection.ReadWrite.OwnedBy",
+ "Description": "Read and write external connections",
+ "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalConnection.ReadWrite.All",
"Description": "Read and write all external connections",
"FullDescription": "Allows the app to read and write all external connections without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
+ "Name": "ExternalConnection.Read.All",
+ "Description": "Read all external connections",
+ "FullDescription": "Allows the app to read all external connections without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-externalconnection-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections",
"Module": "Beta.Search",
+ "Uri": "/external/connections",
+ "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalConnection.Read.All",
- "Description": "Read all external connections",
- "FullDescription": "Allows the app to read all external connections without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalConnection.ReadWrite.OwnedBy",
+ "Description": "Read and write external connections",
+ "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalConnection.ReadWrite.All",
"Description": "Read and write all external connections",
"FullDescription": "Allows the app to read and write all external connections without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
+ "Name": "ExternalConnection.Read.All",
+ "Description": "Read all external connections",
+ "FullDescription": "Allows the app to read all external connections without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-externalconnection-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections/$count",
"Module": "Beta.Search",
+ "Uri": "/external/connections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalConnection.Read.All",
- "Description": "Read all external connections",
- "FullDescription": "Allows the app to read all external connections without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalConnection.ReadWrite.OwnedBy",
+ "Description": "Read and write external connections",
+ "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalConnection.ReadWrite.All",
"Description": "Read and write all external connections",
"FullDescription": "Allows the app to read and write all external connections without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
+ "Name": "ExternalConnection.Read.All",
+ "Description": "Read all external connections",
+ "FullDescription": "Allows the app to read all external connections without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalConnectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}",
"Module": "Beta.Search",
+ "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}",
+ "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ExternalItem.Read.All",
"Description": "Read all external items",
"FullDescription": "Allows the app to read all external items without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ExternalItem.ReadWrite.All",
- "Description": "Read and write items in external datasets",
- "FullDescription": "Allow the app to read or write items in all external datasets that the app is authorized to access",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalItem.ReadWrite.OwnedBy",
"Description": "Read and write external items",
"FullDescription": "Allows the app to read and write external items without a signed-in user. The app can only read external items of the connection that it is authorized to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ExternalItem.ReadWrite.All",
+ "Description": "Read and write items in external datasets",
+ "FullDescription": "Allow the app to read or write items in all external datasets that the app is authorized to access",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/groups",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/groups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}",
"OutputType": "IMicrosoftGraphExternalConnectorsIdentity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionGroupMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroupMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members",
"OutputType": "IMicrosoftGraphExternalConnectorsIdentity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnectionGroupMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroupMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionGroupMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionGroupMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}",
"Module": "Beta.Search",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}",
+ "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalItem.Read.All",
- "Description": "Read all external items",
- "FullDescription": "Allows the app to read all external items without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalItem.ReadWrite.OwnedBy",
+ "Description": "Read and write external items",
+ "FullDescription": "Allows the app to read and write external items without a signed-in user. The app can only read external items of the connection that it is authorized to.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalItem.ReadWrite.All",
"Description": "Read and write items in external datasets",
"FullDescription": "Allow the app to read or write items in all external datasets that the app is authorized to access",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalItem.ReadWrite.OwnedBy",
- "Description": "Read and write external items",
- "FullDescription": "Allows the app to read and write external items without a signed-in user. The app can only read external items of the connection that it is authorized to.",
- "IsAdmin": false
+ "Name": "ExternalItem.Read.All",
+ "Description": "Read all external items",
+ "FullDescription": "Allows the app to read all external items without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-externalitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections/{externalConnection-id}/items",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnectionItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities",
"OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnectionItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionItemActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItemActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy",
"OutputType": "IMicrosoftGraphExternalConnectorsIdentity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionItemActivityPerformedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItemActivityPerformedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/items/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}",
"Module": "Beta.Search",
+ "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}",
+ "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalConnection.Read.All",
- "Description": "Read all external connections",
- "FullDescription": "Allows the app to read all external connections without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalConnection.ReadWrite.OwnedBy",
+ "Description": "Read and write external connections",
+ "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalConnection.ReadWrite.All",
"Description": "Read and write all external connections",
"FullDescription": "Allows the app to read and write all external connections without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
+ "Name": "ExternalConnection.Read.All",
+ "Description": "Read all external connections",
+ "FullDescription": "Allows the app to read all external connections without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/operations",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/operations",
"OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalConnectionOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/operations/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/connections/{externalConnection-id}/quota",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/connections/{externalConnection-id}/quota",
"OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionQuota"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionQuota",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-connectionquota-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/connections/{externalConnection-id}/schema",
"Module": "Beta.Search",
+ "Uri": "/external/connections/{externalConnection-id}/schema",
+ "OutputType": "IMicrosoftGraphExternalConnectorsSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "ExternalConnection.Read.All",
- "Description": "Read all external connections",
- "FullDescription": "Allows the app to read all external connections without a signed-in user.",
- "IsAdmin": false
+ "Name": "ExternalConnection.ReadWrite.OwnedBy",
+ "Description": "Read and write external connections",
+ "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ExternalConnection.ReadWrite.All",
"Description": "Read and write all external connections",
"FullDescription": "Allows the app to read and write all external connections without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ExternalConnection.ReadWrite.OwnedBy",
- "Description": "Read and write external connections",
- "FullDescription": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
- "IsAdmin": false
+ "Name": "ExternalConnection.Read.All",
+ "Description": "Read all external connections",
+ "FullDescription": "Allows the app to read all external connections without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalConnectorsSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalConnectionSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalConnectionSchema",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalconnectors-schema-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/industryData",
"OutputType": "IMicrosoftGraphIndustryDataRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryData"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryData",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}",
+ "OutputType": "IMicrosoftGraphIndustryDataConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-DataConnector.Read.All",
"Description": "View data connector definitions",
"FullDescription": "Allows the app to read data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-DataConnector.ReadWrite.All",
"Description": "Manage data connector definitions",
"FullDescription": "Allows the app to read and write data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-azuredatalakeconnector-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/dataConnectors",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/dataConnectors",
+ "OutputType": "IMicrosoftGraphIndustryDataConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-DataConnector.Read.All",
"Description": "View data connector definitions",
"FullDescription": "Allows the app to read data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-DataConnector.ReadWrite.All",
"Description": "Manage data connector definitions",
"FullDescription": "Allows the app to read and write data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-azuredatalakeconnector-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/dataConnectors/$count",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/dataConnectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-DataConnector.Read.All",
"Description": "View data connector definitions",
"FullDescription": "Allows the app to read data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-DataConnector.ReadWrite.All",
"Description": "Manage data connector definitions",
"FullDescription": "Allows the app to read and write data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}/sourceSystem",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}/sourceSystem",
"OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataConnectorSourceSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataConnectorSourceSystem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}",
+ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-InboundFlow.Read.All",
"Description": "View inbound flow definitions",
"FullDescription": "Allows the app to read inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-InboundFlow.ReadWrite.All",
"Description": "Manage inbound flow definitions",
"FullDescription": "Allows the app to read and write inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataInboundFlow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataInboundFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataInboundFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-inboundflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/inboundFlows",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/inboundFlows",
+ "OutputType": "IMicrosoftGraphIndustryDataInboundFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-InboundFlow.Read.All",
"Description": "View inbound flow definitions",
"FullDescription": "Allows the app to read inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-InboundFlow.ReadWrite.All",
"Description": "Manage inbound flow definitions",
"FullDescription": "Allows the app to read and write inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataInboundFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataInboundFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataInboundFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-inboundfileflow-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/inboundFlows/$count",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/inboundFlows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-InboundFlow.Read.All",
"Description": "View inbound flow definitions",
"FullDescription": "Allows the app to read inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-InboundFlow.ReadWrite.All",
"Description": "Manage inbound flow definitions",
"FullDescription": "Allows the app to read and write inbound data flows without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataInboundFlowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataInboundFlowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/dataConnector",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/dataConnector",
+ "OutputType": "IMicrosoftGraphIndustryDataConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-DataConnector.Read.All",
"Description": "View data connector definitions",
"FullDescription": "Allows the app to read data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-DataConnector.ReadWrite.All",
"Description": "Manage data connector definitions",
"FullDescription": "Allows the app to read and write data connectors without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataInboundFlowDataConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataInboundFlowDataConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/year",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/year",
+ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-TimePeriod.Read.All",
"Description": "Read time period definitions",
"FullDescription": "Allows the app to read time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-TimePeriod.ReadWrite.All",
"Description": "Manage time period definitions",
"FullDescription": "Allows the app to read and write time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataInboundFlowYear"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataInboundFlowYear",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/operations/{longRunningOperation-id}",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/operations/{longRunningOperation-id}",
"OutputType": "IMicrosoftGraphLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-filevalidateoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/operations",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/operations",
"OutputType": "IMicrosoftGraphLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-filevalidateoperation-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/operations/$count",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-ReferenceDefinition.Read.All",
- "Description": "View reference definitions",
- "FullDescription": "Allows the app to read reference definitions without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}",
"OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-referencedefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/referenceDefinitions",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/referenceDefinitions",
"OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-referencedefinition-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/referenceDefinitions/$count",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/referenceDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataReferenceDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataReferenceDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/roleGroups/{roleGroup-id}",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-ReferenceDefinition.Read.All",
- "Description": "View reference definitions",
- "FullDescription": "Allows the app to read reference definitions without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/roleGroups/{roleGroup-id}",
"OutputType": "IMicrosoftGraphIndustryDataRoleGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataRoleGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRoleGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-rolegroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/roleGroups",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/roleGroups",
"OutputType": "IMicrosoftGraphIndustryDataRoleGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataRoleGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRoleGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-rolegroup-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/roleGroups/$count",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData.ReadBasic.All",
- "Description": "View basic service and resource information",
- "FullDescription": "Allows the app to read basic service and resource information without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/roleGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataRoleGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRoleGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/runs/{industryDataRun-id}",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-Run.Read.All",
- "Description": "View current and previous runs",
- "FullDescription": "Allows the app to read current and previous IndustryData runs without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/{industryDataRun-id}",
"OutputType": "IMicrosoftGraphIndustryDataRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydatarun-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/runs",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-Run.Read.All",
- "Description": "View current and previous runs",
- "FullDescription": "Allows the app to read current and previous IndustryData runs without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs",
"OutputType": "IMicrosoftGraphIndustryDataRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydatarun-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/{industryDataRunActivity-id}",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/{industryDataRunActivity-id}",
"OutputType": "IMicrosoftGraphIndustryDataRunActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaExternalIndustryDataRunActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRunActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/runs/{industryDataRun-id}/activities",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/{industryDataRun-id}/activities",
"OutputType": "IMicrosoftGraphIndustryDataRunActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataRunActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRunActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/$count",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataRunActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRunActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/runs/$count",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-Run.Read.All",
- "Description": "View current and previous runs",
- "FullDescription": "Allows the app to read current and previous IndustryData runs without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataRunCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRunCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/runs/{industryDataRun-id}/getStatistics",
"Module": "Beta.Search",
- "Permissions": {
- "Name": "IndustryData-Run.Read.All",
- "Description": "View current and previous runs",
- "FullDescription": "Allows the app to read current and previous IndustryData runs without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/external/industryData/runs/{industryDataRun-id}/getStatistics",
"OutputType": "IMicrosoftGraphIndustryDataRunStatistics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataRunStatistics"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataRunStatistics",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}",
+ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-SourceSystem.Read.All",
"Description": "View source system definitions",
"FullDescription": "Allows the app to read source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-SourceSystem.ReadWrite.All",
"Description": "Manage source system definitions",
"FullDescription": "Allows the app to read and write source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataSourceSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataSourceSystem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-sourcesystemdefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/sourceSystems",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/sourceSystems",
+ "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-SourceSystem.Read.All",
"Description": "View source system definitions",
"FullDescription": "Allows the app to read source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-SourceSystem.ReadWrite.All",
"Description": "Manage source system definitions",
"FullDescription": "Allows the app to read and write source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataSourceSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataSourceSystem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-sourcesystemdefinition-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/sourceSystems/$count",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/sourceSystems/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-SourceSystem.Read.All",
"Description": "View source system definitions",
"FullDescription": "Allows the app to read source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-SourceSystem.ReadWrite.All",
"Description": "Manage source system definitions",
"FullDescription": "Allows the app to read and write source system definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataSourceSystemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataSourceSystemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}",
+ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-TimePeriod.Read.All",
"Description": "Read time period definitions",
"FullDescription": "Allows the app to read time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-TimePeriod.ReadWrite.All",
"Description": "Manage time period definitions",
"FullDescription": "Allows the app to read and write time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaExternalIndustryDataYear"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataYear",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-yeartimeperioddefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/years",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/years",
+ "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-TimePeriod.Read.All",
"Description": "Read time period definitions",
"FullDescription": "Allows the app to read time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-TimePeriod.ReadWrite.All",
"Description": "Manage time period definitions",
"FullDescription": "Allows the app to read and write time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaExternalIndustryDataYear"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataYear",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-yeartimeperioddefinition-list?view=graph-rest-1.0"
},
{
- "Uri": "/external/industryData/years/$count",
"Module": "Beta.Search",
+ "Uri": "/external/industryData/years/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IndustryData-TimePeriod.Read.All",
"Description": "Read time period definitions",
"FullDescription": "Allows the app to read time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IndustryData-TimePeriod.ReadWrite.All",
"Description": "Manage time period definitions",
"FullDescription": "Allows the app to read and write time period definitions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaExternalIndustryDataYearCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaExternalIndustryDataYearCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials",
"OutputType": "IMicrosoftGraphFinancials",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaFinancial"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancial",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}",
"OutputType": "IMicrosoftGraphCompany",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompany"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompany",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies",
"OutputType": "IMicrosoftGraphCompany",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompany"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompany",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/accounts/{account-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/accounts/{account-id}",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/accounts",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/accounts",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/accounts/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/accounts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAccountCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAccountCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}",
"OutputType": "IMicrosoftGraphAgedAccountsPayable",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsPayable",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsPayable",
"OutputType": "IMicrosoftGraphAgedAccountsPayable",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsPayable/$count",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsPayable/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountPayableCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountPayableCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}",
"OutputType": "IMicrosoftGraphAgedAccountsReceivable",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsReceivable",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsReceivable",
"OutputType": "IMicrosoftGraphAgedAccountsReceivable",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/$count",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivableCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivableCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/$count",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaFinancialCompanyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}",
"OutputType": "IMicrosoftGraphCountryRegion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCountryRegion"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCountryRegion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/countriesRegions",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/countriesRegions",
"OutputType": "IMicrosoftGraphCountryRegion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCountryRegion"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCountryRegion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/countriesRegions/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/countriesRegions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCountryRegionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCountryRegionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/currencies/{currency-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/currencies/{currency-id}",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/currencies",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/currencies",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/currencies/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/currencies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCurrencyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCurrencyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}",
"OutputType": "IMicrosoftGraphCustomerPayment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPayment"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPayment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments",
"OutputType": "IMicrosoftGraphCustomerPayment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPayment"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPayment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}",
"OutputType": "IMicrosoftGraphCustomerPaymentJournal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals",
"OutputType": "IMicrosoftGraphCustomerPaymentJournal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}",
"OutputType": "IMicrosoftGraphCustomerPayment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments",
"OutputType": "IMicrosoftGraphCustomerPayment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}",
"OutputType": "IMicrosoftGraphDimension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyDimension"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensions",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensions",
"OutputType": "IMicrosoftGraphDimension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyDimension"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensions/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyDimensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensionValues/{dimensionValue-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensionValues/{dimensionValue-id}",
"OutputType": "IMicrosoftGraphDimensionValue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyDimensionValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimensionValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensionValues",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensionValues",
"OutputType": "IMicrosoftGraphDimensionValue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanyDimensionValue"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimensionValue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyDimensionValueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyDimensionValueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/{employee-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/{employee-id}",
"OutputType": "IMicrosoftGraphEmployee",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyEmployee"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployee",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees",
"OutputType": "IMicrosoftGraphEmployee",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyEmployee"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployee",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyEmployeeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployeeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyEmployeePicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployeePicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyEmployeePicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployeePicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyEmployeePictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployeePictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyEmployeePictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyEmployeePictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}",
"OutputType": "IMicrosoftGraphGeneralLedgerEntry",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/generalLedgerEntries",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/generalLedgerEntries",
"OutputType": "IMicrosoftGraphGeneralLedgerEntry",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/generalLedgerEntries/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/generalLedgerEntries/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}",
"OutputType": "IMicrosoftGraphCompanyInformation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyInformation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/companyInformation",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/companyInformation",
"OutputType": "IMicrosoftGraphCompanyInformation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyInformation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/companyInformation/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/companyInformation/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyInformationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyInformationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyInformationPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyInformationPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/{item-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/{item-id}",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/itemCategories",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/itemCategories",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/itemCategories/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/itemCategories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItemCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/{item-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/{item-id}/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journals/{journal-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journals/{journal-id}",
"OutputType": "IMicrosoftGraphJournal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyJournal"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journals",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journals",
"OutputType": "IMicrosoftGraphJournal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyJournal"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyJournalAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journals/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyJournalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}",
"OutputType": "IMicrosoftGraphJournalLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyJournalLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journalLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journalLines",
"OutputType": "IMicrosoftGraphJournalLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanyJournalLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyJournalLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/journalLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/journalLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyJournalLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyJournalLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentMethods",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentMethods",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentMethods/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentMethods/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentMethodCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentMethodCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentTerms",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentTerms",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/paymentTerms/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/paymentTerms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPaymentTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPaymentTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}",
"OutputType": "IMicrosoftGraphPurchaseInvoice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices",
"OutputType": "IMicrosoftGraphPurchaseInvoice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}",
"OutputType": "IMicrosoftGraphPurchaseInvoiceLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines",
"OutputType": "IMicrosoftGraphPurchaseInvoiceLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor",
"OutputType": "IMicrosoftGraphVendor",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendor"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}",
"OutputType": "IMicrosoftGraphSalesCreditMemo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemo"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos",
"OutputType": "IMicrosoftGraphSalesCreditMemo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemo"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}",
"OutputType": "IMicrosoftGraphSalesCreditMemoLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines",
"OutputType": "IMicrosoftGraphSalesCreditMemoLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}",
"OutputType": "IMicrosoftGraphSalesCreditMemoLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines",
"OutputType": "IMicrosoftGraphSalesCreditMemoLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}",
"OutputType": "IMicrosoftGraphSalesInvoice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoice"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices",
"OutputType": "IMicrosoftGraphSalesInvoice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoice"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}",
"OutputType": "IMicrosoftGraphSalesInvoiceLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines",
"OutputType": "IMicrosoftGraphSalesInvoiceLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoicePaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoicePaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}",
"OutputType": "IMicrosoftGraphSalesOrder",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrder"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrder",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders",
"OutputType": "IMicrosoftGraphSalesOrder",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrder"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrder",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}",
"OutputType": "IMicrosoftGraphSalesOrderLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines",
"OutputType": "IMicrosoftGraphSalesOrderLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleOrderPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleOrderPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}",
"OutputType": "IMicrosoftGraphSalesQuote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuote"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes",
"OutputType": "IMicrosoftGraphSalesQuote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuote"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer",
"OutputType": "IMicrosoftGraphCustomer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}",
"OutputType": "IMicrosoftGraphSalesQuoteLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines",
"OutputType": "IMicrosoftGraphSalesQuoteLine",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLine"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLine",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account",
"OutputType": "IMicrosoftGraphAccount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineAccount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineAccount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item",
"OutputType": "IMicrosoftGraphItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory",
"OutputType": "IMicrosoftGraphItemCategory",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemCategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuotePaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuotePaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanySaleQuoteShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanySaleQuoteShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/shipmentMethods",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/shipmentMethods",
"OutputType": "IMicrosoftGraphShipmentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyShipmentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyShipmentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/shipmentMethods/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/shipmentMethods/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyShipmentMethodCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyShipmentMethodCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}",
"OutputType": "IMicrosoftGraphTaxArea",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyTaxArea"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxArea",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxAreas",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxAreas",
"OutputType": "IMicrosoftGraphTaxArea",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyTaxArea"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxArea",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxAreas/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxAreas/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyTaxAreaCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxAreaCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}",
"OutputType": "IMicrosoftGraphTaxGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyTaxGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxGroups",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxGroups",
"OutputType": "IMicrosoftGraphTaxGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyTaxGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/taxGroups/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/taxGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyTaxGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyTaxGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}",
"OutputType": "IMicrosoftGraphUnitOfMeasure",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/unitsOfMeasure",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/unitsOfMeasure",
"OutputType": "IMicrosoftGraphUnitOfMeasure",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/unitsOfMeasure/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/unitsOfMeasure/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyUnitOfMeasureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyUnitOfMeasureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}",
"Module": "Beta.Financials",
- "Permissions": {
- "Name": "Financials.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}",
"OutputType": "IMicrosoftGraphVendor",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendor"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors",
"OutputType": "IMicrosoftGraphVendor",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyVendor"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency",
"OutputType": "IMicrosoftGraphCurrency",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorCurrency"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorCurrency",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod",
"OutputType": "IMicrosoftGraphPaymentMethod",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPaymentMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPaymentMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm",
"OutputType": "IMicrosoftGraphPaymentTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPaymentTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPaymentTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture",
"OutputType": "IMicrosoftGraphPicture",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPicture"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPicture",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPictureContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPictureContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/$count",
"Module": "Beta.Financials",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaFinancialCompanyVendorPictureCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaFinancialCompanyVendorPictureCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups",
"Module": "Beta.Groups",
+ "Uri": "/groups",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/acceptedSenders",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/acceptedSenders",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupAcceptedSender"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAcceptedSender",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-acceptedsenders?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/acceptedSenders/$ref",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/acceptedSenders/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupAcceptedSenderByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAcceptedSenderByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-acceptedsenders?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/acceptedSenders/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/acceptedSenders/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupAcceptedSenderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAcceptedSenderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}",
"OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAppRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/appRoleAssignments",
"Module": "Beta.Applications",
+ "Uri": "/groups/{group-id}/appRoleAssignments",
+ "OutputType": "IMicrosoftGraphAppRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AppRoleAssignment.ReadWrite.All",
- "Description": "Manage app permission grants and app role assignments",
- "FullDescription": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppRoleAssignment.ReadWrite.All",
+ "Description": "Manage app permission grants and app role assignments",
+ "FullDescription": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAppRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/appRoleAssignments/$count",
"Module": "Beta.Applications",
+ "Uri": "/groups/{group-id}/appRoleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AppRoleAssignment.ReadWrite.All",
- "Description": "Manage app permission grants and app role assignments",
- "FullDescription": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AppRoleAssignment.ReadWrite.All",
+ "Description": "Manage app permission grants and app role assignments",
+ "FullDescription": "Allows the app to manage permission grants for application permissions to any API (including Microsoft Graph) and application assignments for any app, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupAppRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupAppRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/getByIds",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaGroupById"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/groups(uniqueName='{uniqueName}')",
"Module": "Beta.Groups",
+ "Uri": "/groups(uniqueName='{uniqueName}')",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupByUniqueName"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupByUniqueName",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/calendar/events/{event-id}",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/calendar/events/{event-id}",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calendars.ReadBasic",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Calendars.Read",
+ "Description": "Read calendars in all mailboxes",
+ "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupCalendarEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/calendar/events",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/calendar/events",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupCalendarEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-list-events?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/calendar/events/delta",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/calendar/events/delta",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Calendars.Read",
"Description": "Read calendars in all mailboxes",
"FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Calendars.ReadBasic",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calendars.ReadWrite",
"Description": "Read and write calendars in all mailboxes",
"FullDescription": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Calendars.ReadBasic",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupCalendarEventDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarEventDelta",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}",
"OutputType": "IMicrosoftGraphCalendarPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupCalendarPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendarpermission-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/calendar/calendarPermissions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar/calendarPermissions",
"OutputType": "IMicrosoftGraphCalendarPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupCalendarPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarPermission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupCalendarPermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarPermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/calendar/getSchedule",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar/getSchedule",
"OutputType": "IMicrosoftGraphScheduleInformation",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaGroupCalendarSchedule"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupCalendarSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/calendar/calendarView",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/calendar/calendarView",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupCalendarView"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCalendarView",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-list-calendarview?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}",
+ "OutputType": "IMicrosoftGraphConversation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversation-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations",
+ "OutputType": "IMicrosoftGraphConversation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-conversations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}",
+ "OutputType": "IMicrosoftGraphConversationThread",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationThread",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThread"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThread",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads",
+ "OutputType": "IMicrosoftGraphConversationThread",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationThread",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThread"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThread",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversation-list-threads?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}",
+ "OutputType": "IMicrosoftGraphPost",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPost",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupConversationThreadPost"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPost",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts",
+ "OutputType": "IMicrosoftGraphPost",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPost",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPost"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPost",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationthread-list-posts?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostAttachment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments",
+ "OutputType": "IMicrosoftGraphAttachment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMentionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMentionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupConversationThreadPostMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupConversationThreadPostMentionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupConversationThreadPostMentionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/createdOnBehalfOf",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/createdOnBehalfOf",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupCreatedOnBehalfOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupCreatedOnBehalfOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drive",
"Module": "Beta.Files",
+ "Uri": "/groups/{group-id}/drive",
+ "OutputType": "IMicrosoftGraphDrive",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDefaultDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDefaultDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/delta",
"Module": "Beta.Groups",
+ "Uri": "/groups/delta",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaGroupDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives",
"Module": "Beta.Files",
+ "Uri": "/groups/{group-id}/drives",
+ "OutputType": "IMicrosoftGraphDrive",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/activities-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveBundle"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveBundle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/bundles",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/bundles",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveBundle"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveBundle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveBundleContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveBundleContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveBundleContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveBundleContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveBundleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveBundleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveContentTypeBase"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveContentTypeBase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveContentTypeBaseTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveContentTypeBaseTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/$count",
"Module": "Beta.Files",
+ "Uri": "/groups/{group-id}/drives/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveFollowing"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveFollowing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/following",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/following",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveFollowing"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveFollowing",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveFollowingContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveFollowingContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveFollowingContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveFollowingContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-list-following?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveFollowingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveFollowingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bundle-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalytic",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemanalytics-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemChildContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemChildContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemChildContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemChildContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemPermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemPermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel",
"OutputType": "IMicrosoftGraphItemRetentionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemRetentionLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemThumbnail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemThumbnail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-thumbnails?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemThumbnailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemThumbnailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemVersionContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemVersionContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveList"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveListItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveListSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveListSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRoot"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRoot",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalytic",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemanalytics-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/children",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/children",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootChildContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootChildContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootChildContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootChildContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaGroupDriveRootDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootPermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootPermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel",
"OutputType": "IMicrosoftGraphItemRetentionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootRetentionLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootThumbnail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails",
"OutputType": "IMicrosoftGraphThumbnailSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootThumbnail"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootThumbnail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-thumbnails?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootThumbnailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootThumbnailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions",
"OutputType": "IMicrosoftGraphDriveItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveRootVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootVersionContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootVersionContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveRootVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveRootVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveSpecial"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveSpecial",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-get-specialfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/special",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/special",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupDriveSpecial"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveSpecial",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveSpecialContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveSpecialContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveSpecialContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveSpecialContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupDriveSpecialCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupDriveSpecialCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/endpoints/{endpoint-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/endpoints/{endpoint-id}",
+ "OutputType": "IMicrosoftGraphEndpoint",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEndpoint",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/endpoint-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/endpoints",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/endpoints",
+ "OutputType": "IMicrosoftGraphEndpoint",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEndpoint",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-endpoints?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/endpoints/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/endpoints/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEndpointCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEndpointCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/events/{event-id}",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calendars.ReadBasic",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Calendars.Read",
+ "Description": "Read calendars in all mailboxes",
+ "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/events",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/attachments",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/$count",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/events/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/delta",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/events/delta",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Calendars.Read",
"Description": "Read calendars in all mailboxes",
"FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Calendars.ReadBasic",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Calendars.ReadWrite",
"Description": "Read and write calendars in all mailboxes",
"FullDescription": "Allows the app to create, read, update, and delete events of all calendars without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Calendars.ReadBasic",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupEventDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventDelta",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrence"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrence"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-instances?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/extensions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances",
+ "OutputType": "IMicrosoftGraphEvent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calendars.ReadBasic",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calendars.Read",
+ "Description": "Read calendars in all mailboxes",
+ "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-instances?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstanceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/$count",
"Module": "Beta.Calendar",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Calendars.Read",
- "Description": "Read calendars in all mailboxes",
- "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Calendars.ReadBasic",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Calendars.Read",
+ "Description": "Read calendars in all mailboxes",
+ "FullDescription": "Allows the app to read events of all calendars without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences",
"OutputType": "IMicrosoftGraphEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar",
"OutputType": "IMicrosoftGraphCalendar",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCalendar"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCalendar",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupEventInstanceExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupEventInstanceExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupEventInstanceExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/extensions/{extension-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/extensions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/extensions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}",
"Module": "Beta.Groups",
+ "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}",
+ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupLifecyclePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupLifecyclePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/groupLifecyclePolicies",
"Module": "Beta.Groups",
+ "Uri": "/groupLifecyclePolicies",
+ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupLifecyclePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupLifecyclePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/groupLifecyclePolicies",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/groupLifecyclePolicies",
+ "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroupLifecyclePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupLifecyclePolicyByGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupLifecyclePolicyByGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-grouplifecyclepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/groupLifecyclePolicies/$count",
"Module": "Beta.Groups",
+ "Uri": "/groupLifecyclePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaGroupLifecyclePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupLifecyclePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/members",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/{directoryObject-id}/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/$ref",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/members/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/members/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/application/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/device/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/orgContact/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/servicePrincipal/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/members/user/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/members/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/getMemberGroups",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/getMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaGroupMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/getMemberObjects",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/getMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaGroupMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/memberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-memberof?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/administrativeUnit",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/memberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/memberOf/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/memberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}",
+ "OutputType": "IMicrosoftGraphNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/notebooks",
+ "OutputType": "IMicrosoftGraphNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-notebooks?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/$count",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/notebooks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteNotebookCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteNotebookCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl",
+ "OutputType": "IMicrosoftGraphCopyNotebookModel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read.All",
- "Description": "Read all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read.All",
+ "Description": "Read all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCopyNotebookModel",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaGroupOnenoteNotebookFromWebUrl"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupOnenoteNotebookFromWebUrl",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteNotebookSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteNotebookSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteNotebookSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteNotebookSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenoteoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/operations/$count",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/onenote/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/pages",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/pages",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenotePageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenotePageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/pages/$count",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/pages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenotePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenotePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})",
+ "OutputType": "IMicrosoftGraphRecentNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRecentNotebook",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteRecentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteRecentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}",
"OutputType": "IMicrosoftGraphOnenoteResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteResourceContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteResourceContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/resources/$count",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/onenote/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/$count",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sectionGroups",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sectionGroups",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupOnenoteSectionGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionGroupSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages",
"Module": "Beta.Notes",
+ "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOnenoteSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOnenoteSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/owners",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/$ref",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/owners/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupOwnerByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/owners/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/owners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/application/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/device/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/orgContact/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/servicePrincipal/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/owners/user/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/owners/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupOwnerCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupOwnerCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/getPasswordSingleSignOnCredentials",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/getPasswordSingleSignOnCredentials",
+ "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.",
- "IsAdmin": true
- },
{
"Name": "Directory.AccessAsUser.All",
"Description": "Access the directory as you",
"FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals on your behalf. Does not allow management of consent grants.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet",
- "Method": "POST",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPasswordSingleSignOnCredential"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupPasswordSingleSignOnCredential",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPermissionGrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/permissionGrants",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/permissionGrants",
+ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "GroupMember.Read.All",
"Description": "Read all group memberships",
"FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "GroupMember.ReadWrite.All",
"Description": "Read and write all group memberships",
"FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-permissiongrants?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/permissionGrants/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/permissionGrants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "GroupMember.Read.All",
"Description": "Read all group memberships",
"FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "GroupMember.ReadWrite.All",
"Description": "Read and write all group memberships",
"FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/photo",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/photo",
+ "OutputType": "IMicrosoftGraphProfilePhoto",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ProfilePhoto.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProfilePhoto.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProfilePhoto",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupPhoto"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPhoto",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/photos",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/photos",
+ "OutputType": "IMicrosoftGraphProfilePhoto",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ProfilePhoto.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProfilePhoto.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProfilePhoto",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupPhoto"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPhoto",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-photos?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/photo/$value",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/photo/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ProfilePhoto.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProfilePhoto.ReadWrite.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupPhotoContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPhotoContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner",
"OutputType": "IMicrosoftGraphPlannerGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPlanner"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlanner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}",
"OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlan",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans",
"Module": "Beta.Planner",
+ "Uri": "/groups/{group-id}/planner/plans",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupPlannerPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannergroup-list-plans?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets",
"OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupPlannerPlanBucket"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanBucket",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-list-buckets?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/delta",
"OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanBucketDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanBucketDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta",
"OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanBucketTaskDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanBucketTaskDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans/$count",
"Module": "Beta.Planner",
+ "Uri": "/groups/{group-id}/planner/plans/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Tasks.ReadWrite.All",
- "Description": "Read and write all users’ tasks and tasklists",
- "FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Tasks.ReadWrite.All",
+ "Description": "Read and write all users’ tasks and tasklists",
+ "FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans/delta",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/planner/plans/delta",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details",
"OutputType": "IMicrosoftGraphPlannerPlanDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplandetails-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks",
"OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupPlannerPlanTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/delta",
"OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupPlannerPlanTaskDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupPlannerPlanTaskDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/rejectedSenders",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/rejectedSenders",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupRejectedSender"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupRejectedSender",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-rejectedsenders?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/rejectedSenders/$ref",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/rejectedSenders/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupRejectedSenderByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupRejectedSenderByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-rejectedsenders?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/rejectedSenders/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/rejectedSenders/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupRejectedSenderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupRejectedSenderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/settings/{directorySetting-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/settings/{directorySetting-id}",
+ "OutputType": "IMicrosoftGraphDirectorySetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySetting",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/settings",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/settings",
+ "OutputType": "IMicrosoftGraphDirectorySetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectorySetting",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/settings/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteApplicableContentTypeForList"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteApplicableContentTypeForList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteByPath",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteContentTypeBase"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeBase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteContentTypeBaseTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeBaseTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/drive",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteDefaultDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteDefaultDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/delta",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/drives",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/drives",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteDriveCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteDriveCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteExternalColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteExternalColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
- "List",
- "List1"
+ "List"
],
- "Command": "Get-MgBetaGroupSiteGetByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPath",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteGetByPathApplicableContentTypeForList"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathApplicableContentTypeForList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection",
"OutputType": "IMicrosoftGraphInformationProtection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathInformationProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathInformationProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items",
"OutputType": "IMicrosoftGraphBaseItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote",
"Module": "Beta.Sites",
- "Permissions": [],
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists",
+ "OutputType": "IMicrosoftGraphList",
"ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenote",
+ "Permissions": [],
+ "Variants": [
+ "List"
+ ],
"Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
+ },
+ {
+ "Module": "Beta.Sites",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote",
+ "OutputType": "IMicrosoftGraphOnenote",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathOnenote"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathOnenote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages",
"OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin",
"OutputType": "IMicrosoftGraphRecycleBin",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathRecycleBin"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathRecycleBin",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-subsites?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore",
"OutputType": "IMicrosoftGraphTermStore",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetByPathTermStore"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetByPathTermStore",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-store-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteGetGraphBPrePathActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetGraphBPrePathActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteGetGraphBPrePathByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetGraphBPrePathByPath",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetGraphBPrePathCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetGraphBPrePathCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteGetGraphBPrePathLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteGetGraphBPrePathLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection",
"OutputType": "IMicrosoftGraphInformationProtection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker",
"OutputType": "IMicrosoftGraphBitlocker",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionBitlocker"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionBitlocker",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}",
"OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bitlockerrecoverykey-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys",
"OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bitlocker-list-recoverykeys?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKeyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKeyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}",
"OutputType": "IMicrosoftGraphDataLossPreventionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies",
"OutputType": "IMicrosoftGraphDataLossPreventionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy",
"OutputType": "IMicrosoftGraphInformationProtectionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}",
"OutputType": "IMicrosoftGraphInformationProtectionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels",
"OutputType": "IMicrosoftGraphInformationProtectionLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionpolicy-list-labels?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}",
"OutputType": "IMicrosoftGraphSensitivityLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels",
"OutputType": "IMicrosoftGraphSensitivityLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}",
"OutputType": "IMicrosoftGraphSensitivityLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels",
"OutputType": "IMicrosoftGraphSensitivityLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings",
"OutputType": "IMicrosoftGraphSensitivityPolicySettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}",
"OutputType": "IMicrosoftGraphThreatAssessmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/threatassessmentrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests",
"OutputType": "IMicrosoftGraphThreatAssessmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotection-list-threatassessmentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}",
"OutputType": "IMicrosoftGraphThreatAssessmentResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results",
"OutputType": "IMicrosoftGraphThreatAssessmentResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}",
"OutputType": "IMicrosoftGraphBaseItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/items",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/items",
"OutputType": "IMicrosoftGraphBaseItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/items/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
- "Variants": [
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List1"
],
- "Command": "Get-MgBetaGroupSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemActivityListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemActivityListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteListItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteListSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteListSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote",
"OutputType": "IMicrosoftGraphOnenote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenote"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-notebooks?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenoteoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations",
"OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenotePageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenotePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenotePageParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePageParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenotePageParentSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenotePageParentSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}",
"OutputType": "IMicrosoftGraphOnenoteResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources",
"OutputType": "IMicrosoftGraphOnenoteResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteResourceContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteResourceContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages",
"OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection",
"OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook",
"OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionParentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionParentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup",
"OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOnenoteSectionParentSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOnenoteSectionParentSectionGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/richlongrunningoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/operations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}",
"OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages",
"OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage",
"OutputType": "IMicrosoftGraphSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage",
"OutputType": "IMicrosoftGraphSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout",
"OutputType": "IMicrosoftGraphCanvasLayout",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayout"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayout",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}",
"OutputType": "IMicrosoftGraphHorizontalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections",
"OutputType": "IMicrosoftGraphHorizontalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}",
"OutputType": "IMicrosoftGraphHorizontalSectionColumn",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns",
"OutputType": "IMicrosoftGraphHorizontalSectionColumn",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection",
"OutputType": "IMicrosoftGraphVerticalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageAsSitePageWebPartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageAsSitePageWebPartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageCountAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCountAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get-permission?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/permissions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSitePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSitePermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSitePermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin",
"OutputType": "IMicrosoftGraphRecycleBin",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBin"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBin",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}",
"OutputType": "IMicrosoftGraphRecycleBinItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items",
"OutputType": "IMicrosoftGraphRecycleBinItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recyclebin-list-items?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore",
"OutputType": "IMicrosoftGraphTermStore",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStore"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStore",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-store-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-list-groups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-list-sets?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetParentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetParentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-set-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-list-sets?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSiteTermStoreSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSiteTermStoreSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupSubSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSubSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/sites",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/sites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List2"
],
- "Command": "Get-MgBetaGroupSubSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSubSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-subsites?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupSubSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupSubSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team",
"OutputType": "IMicrosoftGraphTeam",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeam",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List1"
],
- "Command": "Get-MgBetaGroupTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/$count",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelFileFolder"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelFileFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelFileFolderContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelFileFolderContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelFileFolderContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelFileFolderContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/members",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list-allowedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelTab",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamChannelTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamChannelTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/group",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamIncomingChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamIncomingChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/incomingChannels",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/incomingChannels",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamIncomingChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamIncomingChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-incomingchannels?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/incomingChannels/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/incomingChannels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamIncomingChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamIncomingChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}",
"OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/installedApps",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/installedApps",
"OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/installedApps/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/installedApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamInstalledAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamInstalledAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamInstalledAppTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamInstalledAppTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamInstalledAppTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamInstalledAppTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/members/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/members/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/members",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}",
"OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/operations",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/operations",
"OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/operations/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners/{user-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOwnerMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwnerMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPermissionGrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/permissionGrants",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/permissionGrants",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-permissiongrants?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/permissionGrants/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/permissionGrants/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/photo",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/photo",
"OutputType": "IMicrosoftGraphProfilePhoto",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPhoto"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPhoto",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/photo/$value",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/photo/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPhotoContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPhotoContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-primarychannel?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolder"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/members",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list-allowedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelTab",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/tabs",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/tabs",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamPrimaryChannelTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamPrimaryChannelTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule",
"OutputType": "IMicrosoftGraphSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}",
"OutputType": "IMicrosoftGraphDayNote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleDayNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleDayNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/dayNotes",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/dayNotes",
"OutputType": "IMicrosoftGraphDayNote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleDayNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleDayNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/dayNotes/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/dayNotes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleDayNoteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleDayNoteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}",
"OutputType": "IMicrosoftGraphOfferShiftRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/offershiftrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests",
"OutputType": "IMicrosoftGraphOfferShiftRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/offershiftrequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}",
"OutputType": "IMicrosoftGraphOpenShift",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshift-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShifts",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShifts",
"OutputType": "IMicrosoftGraphOpenShift",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshift-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}",
"OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshiftchangerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests",
"OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshiftchangerequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/openShifts/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/openShifts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleOpenShiftCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleOpenShiftCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}",
"OutputType": "IMicrosoftGraphSchedulingGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedulinggroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/schedulingGroups",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/schedulingGroups",
"OutputType": "IMicrosoftGraphSchedulingGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-schedulinggroups?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}",
"OutputType": "IMicrosoftGraphShift",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shift-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/shifts",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shifts",
"OutputType": "IMicrosoftGraphShift",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-shifts?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/shifts/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shifts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleShiftCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShiftCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}",
"OutputType": "IMicrosoftGraphShiftsRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions",
"OutputType": "IMicrosoftGraphShiftsRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}",
"OutputType": "IMicrosoftGraphSwapShiftsChangeRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/swapshiftschangerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests",
"OutputType": "IMicrosoftGraphSwapShiftsChangeRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/swapshiftschangerequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}",
"OutputType": "IMicrosoftGraphTimeCard",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeCard",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeCards",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeCards",
"OutputType": "IMicrosoftGraphTimeCard",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeCard",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeCards/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeCards/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeCardCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeCardCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}",
"OutputType": "IMicrosoftGraphTimeOff",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOff"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOff",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoff-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timesOff",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timesOff",
"OutputType": "IMicrosoftGraphTimeOff",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOff"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOff",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-timesoff?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timesOff/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timesOff/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}",
"OutputType": "IMicrosoftGraphTimeOffReason",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffreason-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffReasons",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffReasons",
"OutputType": "IMicrosoftGraphTimeOffReason",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-timeoffreasons?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffReasonCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffReasonCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}",
"OutputType": "IMicrosoftGraphTimeOffRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffRequests",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffRequests",
"OutputType": "IMicrosoftGraphTimeOffRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffrequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}",
"OutputType": "IMicrosoftGraphTeamworkTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktag-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/tags",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags",
"OutputType": "IMicrosoftGraphTeamworkTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktag-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/tags/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}",
"OutputType": "IMicrosoftGraphTeamworkTagMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTagMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTagMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktagmember-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members",
"OutputType": "IMicrosoftGraphTeamworkTagMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTeamTagMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTagMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktagmember-list?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTagMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTagMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/template",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/template",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/team/templateDefinition",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/team/templateDefinition",
"OutputType": "IMicrosoftGraphTeamTemplateDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTeamTemplateDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTeamTemplateDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}",
+ "OutputType": "IMicrosoftGraphConversationThread",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationThread",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThread"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThread",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get-thread?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads",
+ "OutputType": "IMicrosoftGraphConversationThread",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationThread",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThread"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThread",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-threads?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}",
+ "OutputType": "IMicrosoftGraphPost",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPost",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaGroupThreadPost"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPost",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts",
+ "OutputType": "IMicrosoftGraphPost",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPost",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPost"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPost",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationthread-list-posts?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostAttachment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments",
+ "OutputType": "IMicrosoftGraphAttachment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group-Conversation.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group-Conversation.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group-Conversation.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments",
"OutputType": "IMicrosoftGraphAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostInReplyToMentionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostInReplyToMentionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions",
"OutputType": "IMicrosoftGraphMention",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupThreadPostMention"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostMention",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupThreadPostMentionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupThreadPostMentionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/transitiveMembers",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/application",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/device",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/device",
"OutputType": "IMicrosoftGraphDevice",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/orgContact",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/orgContact",
"OutputType": "IMicrosoftGraphOrgContact",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/user",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/transitiveMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read all group memberships",
+ "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "GroupMember.ReadWrite.All",
+ "Description": "Read and write all group memberships",
+ "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read all group memberships",
- "FullDescription": "Allows the app to read memberships and basic group properties for all groups without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.ReadWrite.All",
- "Description": "Read and write all group memberships",
- "FullDescription": "Allows the app to list groups, read basic properties, read and update the membership of the groups this app has access to without a signed-in user. Group properties and owners cannot be updated and groups cannot be deleted.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/application/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/device/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/device/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsDevice",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsOrgContact"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsOrgContact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMembers/user/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMembers/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/transitiveMemberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-transitivememberof?view=graph-rest-1.0"
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/group",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/$count",
"Module": "Beta.Groups",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/groups/getUserOwnedObjects",
"Module": "Beta.Groups",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/groups/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaGroupUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaGroupUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/identity/apiConnectors/{identityApiConnector-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "APIConnectors.ReadWrite.All",
- "Description": "Read and write API connectors for authentication flows",
- "FullDescription": "Allows the app to read, create and manage the API connectors used in user authentication flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/apiConnectors/{identityApiConnector-id}",
"OutputType": "IMicrosoftGraphIdentityApiConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityApiConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityApiConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/apiConnectors",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "APIConnectors.ReadWrite.All",
- "Description": "Read and write API connectors for authentication flows",
- "FullDescription": "Allows the app to read, create and manage the API connectors used in user authentication flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/apiConnectors",
"OutputType": "IMicrosoftGraphIdentityApiConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityApiConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityApiConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-list?view=graph-rest-1.0"
},
{
- "Uri": "/identity/apiConnectors/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "APIConnectors.ReadWrite.All",
- "Description": "Read and write API connectors for authentication flows",
- "FullDescription": "Allows the app to read, create and manage the API connectors used in user authentication flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/apiConnectors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityApiConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityApiConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}",
+ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationEventsFlow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationeventsflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/authenticationEventsFlows",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows",
+ "OutputType": "IMicrosoftGraphAuthenticationEventsFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationEventsFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-authenticationeventsflows?view=graph-rest-1.0"
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow",
"OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow",
+ "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions",
"OutputType": "IMicrosoftGraphAuthenticationConditionsApplications",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications",
"OutputType": "IMicrosoftGraphAuthenticationConditionApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection",
"OutputType": "IMicrosoftGraphOnAttributeCollectionHandler",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart",
"OutputType": "IMicrosoftGraphOnAuthenticationMethodLoadStartHandler",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes",
"OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders",
"OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions",
"OutputType": "IMicrosoftGraphAuthenticationConditionsApplications",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowCondition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowCondition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications",
+ "OutputType": "IMicrosoftGraphAuthenticationConditionApplication",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationConditionApplication",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}",
+ "OutputType": "IMicrosoftGraphAuthenticationEventListener",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationEventListener",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventListener"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventListener",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/authenticationEventListeners",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventListeners",
+ "OutputType": "IMicrosoftGraphAuthenticationEventListener",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationEventListener",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventListener"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventListener",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-authenticationeventlisteners?view=graph-rest-1.0"
},
{
- "Uri": "/identity/authenticationEventListeners/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/authenticationEventListeners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "EventListener.Read.All",
"Description": "Read all authentication event listeners",
"FullDescription": "Allows the app to read your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "EventListener.ReadWrite.All",
"Description": "Read and write all authentication event listeners",
"FullDescription": "Allows the app to read or write your organization's authentication event listeners without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityAuthenticationEventListenerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityAuthenticationEventListenerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}",
+ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphB2CIdentityUserFlow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cidentityuserflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows",
+ "OutputType": "IMicrosoftGraphB2CIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphB2CIdentityUserFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-b2cuserflows?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}",
"OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders",
"OutputType": "IMicrosoftGraphIdentityProvider",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cidentityuserflow-list-identityproviders?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cidentityuserflow-list-identityproviders?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}",
+ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cidentityuserflow-list-languages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-defaultpages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-defaultpages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-overridespages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-overridespages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cidentityuserflow-list-userattributeassignments?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/getOrder",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/getOrder",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute",
"OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}",
+ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphB2XIdentityUserFlow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2xidentityuserflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows",
+ "OutputType": "IMicrosoftGraphB2XIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphB2XIdentityUserFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-b2xuserflows?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration",
"OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowApiConnectorConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowApiConnectorConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}",
"OutputType": "IMicrosoftGraphIdentityProvider",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders",
"OutputType": "IMicrosoftGraphIdentityProvider",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2xidentityuserflow-list-identityproviders?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityUserFlow.ReadWrite.All",
- "Description": "Read and write all identity user flows",
- "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}",
+ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2xidentityuserflow-list-languages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-defaultpages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-defaultpages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages",
+ "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserFlowLanguagePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-overridespages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userflowlanguageconfiguration-list-overridespages?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection",
"OutputType": "IMicrosoftGraphIdentityApiConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollection"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup",
"OutputType": "IMicrosoftGraphIdentityApiConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignupByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance",
"OutputType": "IMicrosoftGraphIdentityApiConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowPreTokenIssuance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowPreTokenIssuance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2xidentityuserflow-list-userattributeassignments?view=graph-rest-1.0"
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute",
"OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.ConditionalAccess",
- "Description": "Read your organization's conditional access policies",
- "FullDescription": "Allows the app to read your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationcontextclassreference-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/authenticationContextClassReferences",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/conditionalAccess/authenticationContextClassReferences",
+ "OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.ConditionalAccess",
"Description": "Read your organization's conditional access policies",
"FullDescription": "Allows the app to read your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccessroot-list-authenticationcontextclassreferences?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.ConditionalAccess",
"Description": "Read your organization's conditional access policies",
"FullDescription": "Allows the app to read your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReferenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReferenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths",
"OutputType": "IMicrosoftGraphAuthenticationStrengthRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrength"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrength",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}",
"OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes",
"OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthroot-list-authenticationmethodmodes?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}",
"OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies",
"OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}",
"OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationcombinationconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations",
"OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-list-combinationconfigurations?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1"
],
- "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}",
"OutputType": "IMicrosoftGraphNamedLocation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/countrynamedlocation-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/namedLocations",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/namedLocations",
"OutputType": "IMicrosoftGraphNamedLocation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccessroot-list-namedlocations?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/namedLocations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/namedLocations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityConditionalAccessNamedLocationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessNamedLocationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}",
"OutputType": "IMicrosoftGraphConditionalAccessPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityConditionalAccessPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccesspolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/policies",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/policies",
"OutputType": "IMicrosoftGraphConditionalAccessPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityConditionalAccessPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccessroot-list-policies?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/policies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/policies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityConditionalAccessPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}",
"OutputType": "IMicrosoftGraphConditionalAccessTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityConditionalAccessTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccesstemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/templates",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/templates",
"OutputType": "IMicrosoftGraphConditionalAccessTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityConditionalAccessTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conditionalaccessroot-list-templates?view=graph-rest-1.0"
},
{
- "Uri": "/identity/conditionalAccess/templates/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/conditionalAccess/templates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityConditionalAccessTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityConditionalAccessTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/continuousAccessEvaluationPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identity/continuousAccessEvaluationPolicy",
"OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityContinuouAccessEvaluationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityContinuouAccessEvaluationPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/continuousaccessevaluationpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}",
+ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomAuthenticationExtension.Read.All",
"Description": "Read all custom authentication extensions",
"FullDescription": "Allows the app to read your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomAuthenticationExtension.ReadWrite.All",
"Description": "Read and write all custom authentication extensions",
"FullDescription": "Allows the app to read or write your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAuthenticationExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityCustomAuthenticationExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityCustomAuthenticationExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationeventlistener-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/customAuthenticationExtensions",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/customAuthenticationExtensions",
+ "OutputType": "IMicrosoftGraphCustomAuthenticationExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomAuthenticationExtension.Read.All",
"Description": "Read all custom authentication extensions",
"FullDescription": "Allows the app to read your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomAuthenticationExtension.ReadWrite.All",
"Description": "Read and write all custom authentication extensions",
"FullDescription": "Allows the app to read or write your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAuthenticationExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityCustomAuthenticationExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityCustomAuthenticationExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-customauthenticationextensions?view=graph-rest-1.0"
},
{
- "Uri": "/identity/customAuthenticationExtensions/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/customAuthenticationExtensions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomAuthenticationExtension.Read.All",
"Description": "Read all custom authentication extensions",
"FullDescription": "Allows the app to read your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomAuthenticationExtension.ReadWrite.All",
"Description": "Read and write all custom authentication extensions",
"FullDescription": "Allows the app to read or write your organization's custom authentication extensions without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityCustomAuthenticationExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityCustomAuthenticationExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsightCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsightCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"OutputType": "IMicrosoftGraphAccessReviewInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-contactedreviewers?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsightCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsightCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition",
"OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}",
"OutputType": "IMicrosoftGraphAccessReviewStage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages",
"OutputType": "IMicrosoftGraphAccessReviewStage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-stages?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions",
"OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-list-decisions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsightCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsightCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}",
+ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions",
+ "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewset-list-definitions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}",
+ "OutputType": "IMicrosoftGraphAccessReviewInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances",
+ "OutputType": "IMicrosoftGraphAccessReviewInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-list-instances?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}",
"OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers",
+ "OutputType": "IMicrosoftGraphAccessReviewReviewer",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewReviewer",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-contactedreviewers?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}",
+ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions",
+ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"OutputType": "IMicrosoftGraphAccessReviewInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition",
"OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}",
+ "OutputType": "IMicrosoftGraphAccessReviewStage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewStage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages",
+ "OutputType": "IMicrosoftGraphAccessReviewStage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewStage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-stages?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}",
+ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions",
+ "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-list-decisions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AccessReview.Read.All",
"Description": "Read all access reviews",
"FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "AccessReview.ReadWrite.All",
"Description": "Manage all access reviews",
"FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights",
"OutputType": "IMicrosoftGraphGovernanceInsight",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance",
"OutputType": "IMicrosoftGraphAccessReviewInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}",
"OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistorydefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions",
"OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewset-list-historydefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}",
"OutputType": "IMicrosoftGraphAccessReviewHistoryInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances",
"OutputType": "IMicrosoftGraphAccessReviewHistoryInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistorydefinition-list-instances?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "AccessReview.ReadWrite.All",
- "Description": "Manage all access reviews",
- "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/accessReviews/policy",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/accessReviews/policy",
+ "OutputType": "IMicrosoftGraphAccessReviewPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.AccessReview",
"Description": "Read and write your organization's directory access review default policy",
"FullDescription": "Allows the app to read and write your organization's directory access review default policy without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceAccessReviewPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAccessReviewPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}",
+ "OutputType": "IMicrosoftGraphAppConsentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppConsentRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests",
+ "OutputType": "IMicrosoftGraphAppConsentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppConsentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentapprovalroute-list-appconsentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}",
+ "OutputType": "IMicrosoftGraphUserConsentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserConsentRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests",
+ "OutputType": "IMicrosoftGraphUserConsentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserConsentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-list-userconsentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ConsentRequest.Read.All",
"Description": "Read all consent requests",
"FullDescription": "Allows the app to read consent requests and approvals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ConsentRequest.ReadWrite.All",
"Description": "Read and write all consent requests",
"FullDescription": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-workflows?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-customtaskextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-customtaskextensions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems",
"OutputType": "IMicrosoftGraphDeletedItemContainer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "LifecycleWorkflows.ReadWrite.All",
- "Description": "Read and write all lifecycle workflows resources",
- "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-deleteditemcontainer-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-deleteditems?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-run-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs",
"OutputType": "IMicrosoftGraphIdentityGovernanceRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-runs?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-taskreports?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-userprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}",
"OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflowversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions",
"OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceRun",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceRun",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-run-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceRun",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceRun",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-runs?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-run-list-taskprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-run-list-userprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-list-taskprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/settings",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/settings",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecyclemanagementsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [
- {
- "Name": "LifecycleWorkflows.Read.All",
- "Description": "Read all lifecycle workflows resources",
- "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "LifecycleWorkflows.ReadWrite.All",
- "Description": "Read and write all lifecycle workflows resources",
- "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTask",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskdefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-taskdefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-taskreports?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskreport-list-taskprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflowtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-lifecycleworkflowscontainer-list-workflowtemplates?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults",
"OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-userprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-userprocessingresult-list-taskprocessingresults?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflowversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-list-versions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [
+ {
+ "Name": "LifecycleWorkflows.Read.All",
+ "Description": "Read all lifecycle workflows resources",
+ "FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "LifecycleWorkflows.ReadWrite.All",
+ "Description": "Read and write all lifecycle workflows resources",
+ "FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks",
+ "OutputType": "IMicrosoftGraphIdentityGovernanceTask",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "LifecycleWorkflows.Read.All",
"Description": "Read all lifecycle workflows resources",
"FullDescription": "Allows the app to list and read all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "LifecycleWorkflows.ReadWrite.All",
"Description": "Read and write all lifecycle workflows resources",
"FullDescription": "Allows the app to create, update, list, read and delete all workflows, tasks and related lifecycle workflows resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults",
"OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task",
"OutputType": "IMicrosoftGraphIdentityGovernanceTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics",
"OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws",
"OutputType": "IMicrosoftGraphPermissionsAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAw"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAw",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PermissionsAnalytics.Read.OwnedBy",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/findings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/findings",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFindingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFindingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissionsanalytics-list-permissionscreepindexdistributions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"OutputType": "IMicrosoftGraphAuthorizationSystem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionAuthorizationSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionAuthorizationSystem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure",
"OutputType": "IMicrosoftGraphPermissionsAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzure"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzure",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PermissionsAnalytics.Read.OwnedBy",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/findings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/findings",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFindingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFindingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissionsanalytics-list-permissionscreepindexdistributions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"OutputType": "IMicrosoftGraphAuthorizationSystem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionAuthorizationSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionAuthorizationSystem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp",
"OutputType": "IMicrosoftGraphPermissionsAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcp"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PermissionsAnalytics.Read.OwnedBy",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings",
"OutputType": "IMicrosoftGraphFinding",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFindingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFindingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions",
"OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissionsanalytics-list-permissionscreepindexdistributions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem",
"OutputType": "IMicrosoftGraphAuthorizationSystem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionAuthorizationSystem"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionAuthorizationSystem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement",
"OutputType": "IMicrosoftGraphPermissionsManagement",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}",
"OutputType": "IMicrosoftGraphPermissionsRequestChange",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissionsrequestchange-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges",
"OutputType": "IMicrosoftGraphPermissionsRequestChange",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissionsmanagement-list-permissionsrequestchanges?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChangeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChangeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "ScheduledPermissions.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests",
"OutputType": "IMicrosoftGraphScheduledPermissionsRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess",
"OutputType": "IMicrosoftGraphPrivilegedAccessRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentschedules?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-assignmentschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityschedules?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroup-list-eligibilityschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rolemanagementalert-list-alerts?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rolemanagementalert-list-alertconfigurations?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}/alertDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}/alertDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationAlertDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationAlertDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rolemanagementalert-list-alertdefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrolemanagementalertincident-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertIncident",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrolemanagementalert-list-alertincidents?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncidentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncidentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}",
"OutputType": "IMicrosoftGraphLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/operations",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/operations",
"OutputType": "IMicrosoftGraphLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/roleManagementAlerts/operations/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/roleManagementAlerts/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Agreement.Read.All",
- "Description": "Read all terms of use agreements",
- "FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreement-list-files?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Agreement.Read.All",
- "Description": "Read all terms of use agreements",
- "FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements",
"OutputType": "IMicrosoftGraphAgreement",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termsofusecontainer-list-agreements?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreementAcceptances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreementAcceptances",
"OutputType": "IMicrosoftGraphAgreementAcceptance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Agreement.Read.All",
- "Description": "Read all terms of use agreements",
- "FullDescription": "Allows the app to read terms of use agreements on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file",
"OutputType": "IMicrosoftGraphAgreementFile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations",
"OutputType": "IMicrosoftGraphAgreementFileLocalization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/agreementfile-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions",
"OutputType": "IMicrosoftGraphAgreementFileVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/identityProviders/{identityProviderBase-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/identityProviders/{identityProviderBase-id}",
+ "OutputType": "IMicrosoftGraphIdentityProviderBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityProvider",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/identityProviders",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/identityProviders",
+ "OutputType": "IMicrosoftGraphIdentityProviderBase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityProviderBase",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityProvider"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityProvider",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitycontainer-list-identityproviders?view=graph-rest-1.0"
},
{
- "Uri": "/identity/identityProviders/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/identityProviders/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityProvider.Read.All",
"Description": "Read identity providers",
"FullDescription": "Allows the app to read your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityProvider.ReadWrite.All",
"Description": "Read and write identity providers",
"FullDescription": "Allows the app to read and write your organization’s identity (authentication) providers’ properties without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityProviderCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityProviderCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/userFlows/{identityUserFlow-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlows/{identityUserFlow-id}",
+ "OutputType": "IMicrosoftGraphIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlow",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflow-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/userFlows",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlows",
+ "OutputType": "IMicrosoftGraphIdentityUserFlow",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlow",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityUserFlow"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlow",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflow-list?view=graph-rest-1.0"
},
{
- "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaIdentityUserFlowAttribute"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlowAttribute",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattribute-get?view=graph-rest-1.0"
},
{
- "Uri": "/identity/userFlowAttributes",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlowAttributes",
+ "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaIdentityUserFlowAttribute"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlowAttribute",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattribute-list?view=graph-rest-1.0"
},
{
- "Uri": "/identity/userFlowAttributes/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlowAttributes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityUserFlowAttributeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlowAttributeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identity/userFlows/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identity/userFlows/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityUserFlow.Read.All",
"Description": "Read all identity user flows",
"FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityUserFlow.ReadWrite.All",
"Description": "Read and write all identity user flows",
"FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaIdentityUserFlowCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaIdentityUserFlowCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection",
"OutputType": "IMicrosoftGraphInformationProtection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/bitlocker",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/bitlocker",
"OutputType": "IMicrosoftGraphBitlocker",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionBitlocker"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionBitlocker",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}",
+ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "BitLockerKey.Read.All",
+ "Name": "BitLockerKey.ReadBasic.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "BitLockerKey.ReadBasic.All",
+ "Name": "BitLockerKey.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bitlockerrecoverykey-get?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/bitlocker/recoveryKeys",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/bitlocker/recoveryKeys",
+ "OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "BitLockerKey.Read.All",
+ "Name": "BitLockerKey.ReadBasic.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "BitLockerKey.ReadBasic.All",
+ "Name": "BitLockerKey.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBitlockerRecoveryKey",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bitlocker-list-recoverykeys?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/bitlocker/recoveryKeys/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/bitlocker/recoveryKeys/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "BitLockerKey.Read.All",
+ "Name": "BitLockerKey.ReadBasic.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "BitLockerKey.ReadBasic.All",
+ "Name": "BitLockerKey.Read.All",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKeyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKeyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}",
"OutputType": "IMicrosoftGraphDataLossPreventionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/dataLossPreventionPolicies",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/dataLossPreventionPolicies",
"OutputType": "IMicrosoftGraphDataLossPreventionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/dataLossPreventionPolicies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/dataLossPreventionPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/policy",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/policy",
"OutputType": "IMicrosoftGraphInformationProtectionPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}",
+ "OutputType": "IMicrosoftGraphInformationProtectionLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInformationProtectionLabel",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionPolicyLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionPolicyLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-get?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/policy/labels",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/policy/labels",
+ "OutputType": "IMicrosoftGraphInformationProtectionLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInformationProtectionLabel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaInformationProtectionPolicyLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionPolicyLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionpolicy-list-labels?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/policy/labels/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/policy/labels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionPolicyLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionPolicyLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/sensitivityLabels/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/sensitivityLabels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionSensitivityLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionSensitivityLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionSensitivityLabelSublabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionSensitivityLabelSublabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/sensitivityPolicySettings",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/sensitivityPolicySettings",
"OutputType": "IMicrosoftGraphSensitivityPolicySettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionSensitivityPolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionSensitivityPolicySetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}",
+ "OutputType": "IMicrosoftGraphThreatAssessmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ThreatAssessment.Read.All",
- "Description": "Read threat assessment requests",
- "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ThreatAssessment.ReadWrite.All",
"Description": "Read and write threat assessment requests",
"FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ThreatAssessment.Read.All",
+ "Description": "Read threat assessment requests",
+ "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphThreatAssessmentRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/threatassessmentrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/threatAssessmentRequests",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/threatAssessmentRequests",
+ "OutputType": "IMicrosoftGraphThreatAssessmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ThreatAssessment.Read.All",
- "Description": "Read threat assessment requests",
- "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ThreatAssessment.ReadWrite.All",
"Description": "Read and write threat assessment requests",
"FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ThreatAssessment.Read.All",
+ "Description": "Read threat assessment requests",
+ "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphThreatAssessmentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotection-list-threatassessmentrequests?view=graph-rest-1.0"
},
{
- "Uri": "/informationProtection/threatAssessmentRequests/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/informationProtection/threatAssessmentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ThreatAssessment.Read.All",
- "Description": "Read threat assessment requests",
- "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ThreatAssessment.ReadWrite.All",
"Description": "Read and write threat assessment requests",
"FullDescription": "Allows an app to read your organization's threat assessment requests on your behalf. Also allows the app to create new requests to assess threats received by your organization on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "ThreatAssessment.Read.All",
+ "Description": "Read threat assessment requests",
+ "FullDescription": "Allows an app to read your organization's threat assessment requests, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}",
"OutputType": "IMicrosoftGraphThreatAssessmentResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results",
"OutputType": "IMicrosoftGraphThreatAssessmentResult",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult",
+ "ApiReferenceLink": null
},
{
- "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResultCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResultCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}",
"OutputType": "IMicrosoftGraphInvitation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInvitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations",
"OutputType": "IMicrosoftGraphInvitation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaInvitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaInvitationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInvitationInvitedUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInvitationInvitedUserSponsor"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserSponsor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUserSponsors",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUserSponsors",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaInvitationInvitedUserSponsor"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserSponsor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaInvitationInvitedUserSponsorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaInvitationInvitedUserSponsorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}",
+ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOauth2PermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaOauth2PermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-1.0"
},
{
- "Uri": "/oauth2PermissionGrants",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/oauth2PermissionGrants",
+ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaOauth2PermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaOauth2PermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-1.0"
},
{
- "Uri": "/oauth2PermissionGrants/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/oauth2PermissionGrants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaOauth2PermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOauth2PermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/oauth2PermissionGrants/delta",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/oauth2PermissionGrants/delta",
+ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaOauth2PermissionGrantDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaOauth2PermissionGrantDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}",
"OutputType": "IMicrosoftGraphOnPremisesPublishingProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles",
"OutputType": "IMicrosoftGraphOnPremisesPublishingProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}",
"OutputType": "IMicrosoftGraphOnPremisesAgent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgent"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onpremisesagent-get?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents",
"OutputType": "IMicrosoftGraphOnPremisesAgent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgent"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onpremisesagent-list?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/$count",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}",
"OutputType": "IMicrosoftGraphOnPremisesAgentGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onpremisesagentgroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups",
"OutputType": "IMicrosoftGraphOnPremisesAgentGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1",
"List2"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onpremisesagentgroup-list?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}",
"OutputType": "IMicrosoftGraphOnPremisesAgent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents",
"OutputType": "IMicrosoftGraphOnPremisesAgent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/$count",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
@@ -106580,6388 +123293,7548 @@
"GetViaIdentity1",
"GetViaIdentity2"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}",
"OutputType": "IMicrosoftGraphPublishedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources",
"OutputType": "IMicrosoftGraphPublishedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups",
"OutputType": "IMicrosoftGraphOnPremisesAgentGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}",
"OutputType": "IMicrosoftGraphConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connector-get?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors",
"OutputType": "IMicrosoftGraphConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connector-list?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}",
"OutputType": "IMicrosoftGraphConnectorGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectorgroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups",
"OutputType": "IMicrosoftGraphConnectorGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/connectorgroup-list?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(appId='{appId}')",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(appId='{appId}')",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByAppId"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByAppId",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(uniqueName='{uniqueName}')",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(uniqueName='{uniqueName}')",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByUniqueName"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByUniqueName",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members",
"OutputType": "IMicrosoftGraphConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf",
"OutputType": "IMicrosoftGraphConnectorGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaOnPremisePublishingProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "OnPremisesPublishingProfiles.ReadWrite.All",
- "Description": "Manage on-premises published resources",
- "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}",
"OutputType": "IMicrosoftGraphPublishedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/publishedresource-get?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "OnPremisesPublishingProfiles.ReadWrite.All",
- "Description": "Manage on-premises published resources",
- "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources",
"OutputType": "IMicrosoftGraphPublishedResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/publishedresource-list?view=graph-rest-1.0"
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups",
"OutputType": "IMicrosoftGraphOnPremisesAgentGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/$count",
"Module": "Beta.Applications",
- "Permissions": {
- "Name": "OnPremisesPublishingProfiles.ReadWrite.All",
- "Description": "Manage on-premises published resources",
- "FullDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}",
+ "OutputType": "IMicrosoftGraphOrganization",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementServiceConfig.Read.All",
"Description": "Read Microsoft Intune configuration",
"FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementServiceConfig.ReadWrite.All",
"Description": "Read and write Microsoft Intune configuration",
"FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganization",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization",
+ "OutputType": "IMicrosoftGraphOrganization",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.Read.All",
+ "Description": "Read Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
- },
- {
- "Name": "DeviceManagementServiceConfig.Read.All",
- "Description": "Read Microsoft Intune configuration",
- "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Organization.ReadWrite.All",
+ "Description": "Read and write organization information",
+ "FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Organization.ReadWrite.All",
- "Description": "Read and write organization information",
- "FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganization",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaOrganization"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding",
+ "OutputType": "IMicrosoftGraphOrganizationalBranding",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganizationalBranding",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBranding"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBranding",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/backgroundImage",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/backgroundImage",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingBackgroundImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingBackgroundImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/bannerLogo",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/bannerLogo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingBannerLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingBannerLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/customCSS",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/customCSS",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingCustomCss"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingCustomCss",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/favicon",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/favicon",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingFavicon"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingFavicon",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/headerLogo",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/headerLogo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingHeaderLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingHeaderLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}",
+ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbrandinglocalization-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations",
+ "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalization"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationBackgroundImage"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationBackgroundImage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationBannerLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationBannerLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationCustomCss"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationCustomCss",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationFavicon"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationFavicon",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationHeaderLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationHeaderLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "OrganizationalBranding.Read.All",
"Description": "Read organizational branding information",
"FullDescription": "Allows the app to read the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "OrganizationalBranding.ReadWrite.All",
"Description": "Read and write organizational branding information",
"FullDescription": "Allows the app to read and write the organizational branding information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogoDark"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogoDark",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-list-localizations?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/squareLogo",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/squareLogo",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingSquareLogo"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingSquareLogo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/branding/squareLogoDark",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/branding/squareLogoDark",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationBrandingSquareLogoDark"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationBrandingSquareLogoDark",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationalbranding-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/getByIds",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaOrganizationById"
+ "Method": "POST",
+ "Command": "Get-MgBetaOrganizationById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}",
+ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/certificatebasedauthconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration",
+ "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/certificatebasedauthconfiguration-list?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.Read.All",
+ "Description": "Read Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
- },
- {
- "Name": "DeviceManagementServiceConfig.Read.All",
- "Description": "Read Microsoft Intune configuration",
- "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementServiceConfig.ReadWrite.All",
- "Description": "Read and write Microsoft Intune configuration",
- "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Organization.ReadWrite.All",
+ "Description": "Read and write organization information",
+ "FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Organization.Read.All",
+ "Description": "Read organization information",
+ "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Organization.Read.All",
- "Description": "Read organization information",
- "FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Organization.ReadWrite.All",
- "Description": "Read and write organization information",
- "FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "Name": "DeviceManagementServiceConfig.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune configuration",
+ "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.Read.All",
+ "Description": "Read Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaOrganizationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/extensions/{extension-id}",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/extensions/{extension-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/extensions",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/extensions",
"OutputType": "IMicrosoftGraphExtension",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaOrganizationExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationExtension",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/extensions/$count",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/extensions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/getMemberGroups",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/getMemberGroups",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaOrganizationMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaOrganizationMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/getMemberObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/getMemberObjects",
"OutputType": null,
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaOrganizationMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaOrganizationMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/partnerInformation",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/{organization-id}/partnerInformation",
"OutputType": "IMicrosoftGraphPartnerInformation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationPartnerInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationPartnerInformation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/settings",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/settings",
+ "OutputType": "IMicrosoftGraphOrganizationSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Read",
"Description": "Sign you in and read your profile",
"FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOrganizationSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/organization/{organization-id}/settings/contactInsights",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/settings/contactInsights",
+ "OutputType": "IMicrosoftGraphInsightsSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInsightsSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationSettingContactInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationSettingContactInsight",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationsettings-list-contactinsights?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/settings/itemInsights",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/settings/itemInsights",
+ "OutputType": "IMicrosoftGraphInsightsSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "User.ReadWrite.All",
"Description": "Read and write all users' full profiles",
"FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInsightsSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationSettingItemInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationSettingItemInsight",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationsettings-list-iteminsights?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess",
+ "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, on your behalf. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationSettingMicrosoftApplicationDataAccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationSettingMicrosoftApplicationDataAccess",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationsettings-list-microsoftapplicationdataaccess?view=graph-rest-1.0"
},
{
- "Uri": "/organization/{organization-id}/settings/peopleInsights",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/organization/{organization-id}/settings/peopleInsights",
+ "OutputType": "IMicrosoftGraphInsightsSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "User.Read.All",
"Description": "Read all users' full profiles",
"FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "User.ReadWrite.All",
"Description": "Read and write all users' full profiles",
"FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphInsightsSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaOrganizationSettingPersonInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaOrganizationSettingPersonInsight",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organizationsettings-list-peopleinsights?view=graph-rest-1.0"
},
{
- "Uri": "/organization/getUserOwnedObjects",
"Module": "Beta.Identity.DirectoryManagement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/organization/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaOrganizationUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaOrganizationUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/places/{place-id}/room",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/room",
"OutputType": "IMicrosoftGraphRoom",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoom"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/room",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Place.Read.All",
- "Description": "Read all company places",
- "FullDescription": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/places/room",
"OutputType": "IMicrosoftGraphRoom",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlaceAsRoom"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList",
"OutputType": "IMicrosoftGraphRoomList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoomList"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/roomList",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Place.Read.All",
- "Description": "Read all company places",
- "FullDescription": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/places/roomList",
"OutputType": "IMicrosoftGraphRoomList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlaceAsRoomList"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/rooms/{room-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/rooms/{room-id}",
"OutputType": "IMicrosoftGraphRoom",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoomListRoom"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/rooms",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/rooms",
"OutputType": "IMicrosoftGraphRoom",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlaceAsRoomListRoom"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/rooms/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/rooms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoomListRoomCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListRoomCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}",
"OutputType": "IMicrosoftGraphWorkspace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoomListWorkspace"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListWorkspace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/workspaces",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/workspaces",
"OutputType": "IMicrosoftGraphWorkspace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlaceAsRoomListWorkspace"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListWorkspace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/{place-id}/roomList/workspaces/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/{place-id}/roomList/workspaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlaceAsRoomListWorkspaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceAsRoomListWorkspaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/$count",
"Module": "Beta.Calendar",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/places/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/room/$count",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Place.Read.All",
- "Description": "Read all company places",
- "FullDescription": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/places/room/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlaceCountAsRoom"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceCountAsRoom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/places/roomList/$count",
"Module": "Beta.Calendar",
- "Permissions": {
- "Name": "Place.Read.All",
- "Description": "Read all company places",
- "FullDescription": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/places/roomList/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlaceCountAsRoomList"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlaceCountAsRoomList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/planner",
"OutputType": "IMicrosoftGraphPlanner",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlanner"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlanner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/buckets/{plannerBucket-id}",
"Module": "Beta.Planner",
+ "Uri": "/planner/buckets/{plannerBucket-id}",
+ "OutputType": "IMicrosoftGraphPlannerBucket",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerBucket"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerBucket",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/buckets",
"Module": "Beta.Planner",
+ "Uri": "/planner/buckets",
+ "OutputType": "IMicrosoftGraphPlannerBucket",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerBucket"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerBucket",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planner-list-buckets?view=graph-rest-1.0"
},
{
- "Uri": "/planner/buckets/$count",
"Module": "Beta.Planner",
+ "Uri": "/planner/buckets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlannerBucketCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerBucketCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/buckets/delta",
"Module": "Beta.Planner",
+ "Uri": "/planner/buckets/delta",
+ "OutputType": "IMicrosoftGraphPlannerBucket",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaPlannerBucketDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerBucketDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/buckets/{plannerBucket-id}/tasks",
"Module": "Beta.Planner",
+ "Uri": "/planner/buckets/{plannerBucket-id}/tasks",
+ "OutputType": "IMicrosoftGraphPlannerTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerBucketTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerBucketTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/planner/plans/{plannerPlan-id}",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/{plannerPlan-id}",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/plans",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planner-list-plans?view=graph-rest-1.0"
},
{
- "Uri": "/planner/plans/{plannerPlan-id}/buckets",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/{plannerPlan-id}/buckets",
+ "OutputType": "IMicrosoftGraphPlannerBucket",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerBucket",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerPlanBucket"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlanBucket",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-list-buckets?view=graph-rest-1.0"
},
{
- "Uri": "/planner/plans/$count",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlannerPlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/plans/delta",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/delta",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaPlannerPlanDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlanDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/plans/{plannerPlan-id}/details",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/{plannerPlan-id}/details",
+ "OutputType": "IMicrosoftGraphPlannerPlanDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlanDetails",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerPlanDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlanDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplandetails-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/plans/{plannerPlan-id}/tasks",
"Module": "Beta.Planner",
+ "Uri": "/planner/plans/{plannerPlan-id}/tasks",
+ "OutputType": "IMicrosoftGraphPlannerTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerPlanTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerPlanTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}",
+ "OutputType": "IMicrosoftGraphPlannerRoster",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerRoster",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerRoster"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRoster",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerroster-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/rosters",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/planner/rosters",
"OutputType": "IMicrosoftGraphPlannerRoster",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerRoster"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRoster",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/rosters/$count",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/planner/rosters/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlannerRosterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}",
+ "OutputType": "IMicrosoftGraphPlannerRosterMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerRosterMember",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerRosterMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerrostermember-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/members",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}/members",
+ "OutputType": "IMicrosoftGraphPlannerRosterMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerRosterMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerRosterMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerroster-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/members/$count",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerRosterMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/plans/{plannerPlan-id}",
"Module": "Beta.Planner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/planner/rosters/{plannerRoster-id}/plans/{plannerPlan-id}",
"OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerRosterPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterPlan",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/plans",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}/plans",
+ "OutputType": "IMicrosoftGraphPlannerPlan",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerPlan",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerRosterPlan"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterPlan",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerroster-list-plans?view=graph-rest-1.0"
},
{
- "Uri": "/planner/rosters/{plannerRoster-id}/plans/$count",
"Module": "Beta.Planner",
+ "Uri": "/planner/rosters/{plannerRoster-id}/plans/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerRosterPlanCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerRosterPlanCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/tasks/{plannerTask-id}",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/{plannerTask-id}",
+ "OutputType": "IMicrosoftGraphPlannerTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/tasks",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks",
+ "OutputType": "IMicrosoftGraphPlannerTask",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPlannerTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planner-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat",
+ "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerTaskAssignedToTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskAssignedToTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerassignedtotaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat",
+ "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerTaskBucketTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskBucketTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbuckettaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/tasks/$count",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPlannerTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/tasks/delta",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/delta",
+ "OutputType": "IMicrosoftGraphPlannerTask",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTask",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaPlannerTaskDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/planner/tasks/{plannerTask-id}/details",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/{plannerTask-id}/details",
+ "OutputType": "IMicrosoftGraphPlannerTaskDetails",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerTaskDetails",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerTaskDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertaskdetails-get?view=graph-rest-1.0"
},
{
- "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat",
"Module": "Beta.Planner",
+ "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat",
+ "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Tasks.Read",
"Description": "Read your tasks and task lists",
"FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.Read.All",
"Description": "Read all users’ tasks and tasklist",
"FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Tasks.ReadWrite",
"Description": "Create, read, update, and delete your tasks and task lists",
"FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Tasks.ReadWrite.All",
"Description": "Read and write all users’ tasks and tasklists",
"FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPlannerTaskProgressTaskBoardFormat"
+ "Method": "GET",
+ "Command": "Get-MgBetaPlannerTaskProgressTaskBoardFormat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerprogresstaskboardtaskformat-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/accessReviewPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/accessReviewPolicy",
+ "OutputType": "IMicrosoftGraphAccessReviewPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.AccessReview",
"Description": "Read and write your organization's directory access review default policy",
"FullDescription": "Allows the app to read and write your organization's directory access review default policy without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAccessReviewPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAccessReviewPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAccessReviewPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}",
+ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/activitybasedtimeoutpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/activityBasedTimeoutPolicies",
+ "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/activitybasedtimeoutpolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/activityBasedTimeoutPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/activityBasedTimeoutPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/adminConsentRequestPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/adminConsentRequestPolicy",
+ "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConsentRequest",
"Description": "Read and write your organization's consent request policy",
"FullDescription": "Allows the app to read and write your organization's consent requests policy without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAdminConsentRequestPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAdminConsentRequestPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/adminconsentrequestpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}",
+ "OutputType": "IMicrosoftGraphAppManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appmanagementpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/appManagementPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/appManagementPolicies",
+ "OutputType": "IMicrosoftGraphAppManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appmanagementpolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.Read.All",
+ "Description": "Read your organization's policies",
+ "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appmanagementpolicy-list-appliesto?view=graph-rest-1.0"
},
{
- "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.Read.All",
+ "Description": "Read your organization's policies",
+ "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/appManagementPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/appManagementPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAppManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAppManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationFlowsPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authenticationFlowsPolicy",
+ "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.AuthenticationFlows",
"Description": "Read and write authentication flow policies",
"FullDescription": "Allows the app to read and write all authentication flow policies for the tenant, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAuthenticationFlowPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationFlowPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationflowspolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationMethodsPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.ReadWrite.AuthenticationMethod",
- "Description": "Read and write all authentication method policies ",
- "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationMethodsPolicy",
"OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAuthenticationMethodPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationMethodPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodspolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}",
"OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations",
"OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}",
+ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.ReadWrite.AuthenticationMethod",
- "Description": "Read and write all authentication method policies ",
- "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.ReadWrite.AuthenticationMethod",
+ "Description": "Read and write all authentication method policies ",
+ "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationStrengthPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authenticationStrengthPolicies",
+ "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.ReadWrite.AuthenticationMethod",
- "Description": "Read and write all authentication method policies ",
- "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.ReadWrite.AuthenticationMethod",
+ "Description": "Read and write all authentication method policies ",
+ "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthroot-list-policies?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}",
"OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationcombinationconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations",
"OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-list-combinationconfigurations?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfigurationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfigurationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authenticationStrengthPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authenticationStrengthPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Policy.ReadWrite.AuthenticationMethod",
- "Description": "Read and write all authentication method policies ",
- "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.ReadWrite.AuthenticationMethod",
+ "Description": "Read and write all authentication method policies ",
+ "FullDescription": "Allows the app to read and write all authentication method policies for the tenant, without a signed-in user. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}",
"OutputType": "IMicrosoftGraphAuthorizationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authorizationPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authorizationPolicy",
+ "OutputType": "IMicrosoftGraphAuthorizationPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.Authorization",
"Description": "Read and write your organization's authorization policy",
"FullDescription": "Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthorizationPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authorizationpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/authorizationPolicy/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/authorizationPolicy/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.Authorization",
"Description": "Read and write your organization's authorization policy",
"FullDescription": "Allows the app to read and write your organization's authorization policy without a signed in user. For example, authorization policies can control some of the permissions that the out-of-the-box user role has by default.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}",
"OutputType": "IMicrosoftGraphDefaultUserRoleOverride",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides",
"OutputType": "IMicrosoftGraphDefaultUserRoleOverride",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverrideCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverrideCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/b2cAuthenticationMethodsPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/b2cAuthenticationMethodsPolicy",
"OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyB2CAuthenticationMethodPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyB2CAuthenticationMethodPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/b2cauthenticationmethodspolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}",
+ "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/claimsmappingpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/claimsMappingPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/claimsMappingPolicies",
+ "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/claimsmappingpolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/claimsMappingPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/claimsMappingPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyClaimMappingPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyClaimMappingPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/conditionalAccessPolicies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/conditionalAccessPolicies/$count",
"OutputType": null,
- "Method": "GET",
- "Variants": [
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyConditionalAccessPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyConditionalAccessPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/crossTenantAccessPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy",
+ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/default",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/default",
+ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyDefault"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyDefault",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}",
+ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationpartner-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/partners",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/partners",
+ "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicy-list-partners?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/partners/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/partners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization",
+ "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.CrossTenantAccess",
"Description": "Read and write your organization's cross tenant access policies",
"FullDescription": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantidentitysyncpolicypartner-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/templates",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/crossTenantAccessPolicy/templates",
+ "OutputType": "IMicrosoftGraphPolicyTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "MultiTenantOrganization.Read.All",
"Description": "Read all multi-tenant organization details and tenants",
"FullDescription": "Allows the app to read all multi-tenant organization details and tenants, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "MultiTenantOrganization.ReadWrite.All",
"Description": "Read and write all multi-tenant organization details and tenants",
"FullDescription": "Allows the app to read and write all multi-tenant organization details and tenants, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPolicyTemplate",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization",
"OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationidentitysyncpolicytemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration",
"OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/defaultAppManagementPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/defaultAppManagementPolicy",
+ "OutputType": "IMicrosoftGraphTenantAppManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTenantAppManagementPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyDefaultAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyDefaultAppManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantappmanagementpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/deviceRegistrationPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/deviceRegistrationPolicy",
+ "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
- },
{
"Name": "Policy.Read.DeviceConfiguration",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.DeviceConfiguration",
"Description": "Read and write your organization's device configuration policies",
"FullDescription": "Allows the app to read and write your organization's device configuration policies on your behalf. For example, device registration policy can limit initial provisioning controls using quota restrictions, additional authentication and authorization checks.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Policy.Read.All",
+ "Description": "Read your organization's policies",
+ "FullDescription": "Allows the app to read your organization's policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyDeviceRegistrationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyDeviceRegistrationPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deviceregistrationpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/directoryRoleAccessReviewPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/directoryRoleAccessReviewPolicy",
"OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/externalIdentitiesPolicy",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/externalIdentitiesPolicy",
+ "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ExternalIdentities",
"Description": "Read and write your organization's external identities policy",
"FullDescription": "Allows the application to read and update the organization's external identities policy without a signed-in user. For example, external identities policy controls if users invited to access resources in your organization via B2B collaboration or B2B direct connect are allowed to self-service leave.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyExternalIdentityPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyExternalIdentityPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/externalidentitiespolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}",
"OutputType": "IMicrosoftGraphFeatureRolloutPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/featurerolloutpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/featureRolloutPolicies",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies",
"OutputType": "IMicrosoftGraphFeatureRolloutPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-featurerolloutpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToByRef",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/featureRolloutPolicies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/featureRolloutPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyFeatureRolloutPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFeatureRolloutPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/federatedTokenValidationPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/federatedTokenValidationPolicy",
"OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyFederatedTokenValidationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyFederatedTokenValidationPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/policyroot-list-federatedtokenvalidationpolicy?view=graph-rest-1.0"
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}",
+ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/homerealmdiscoverypolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/homeRealmDiscoveryPolicies",
+ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/homerealmdiscoverypolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/homeRealmDiscoveryPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/homeRealmDiscoveryPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "Policy.Read.All",
- "Description": "Read your organization's policies",
- "FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy",
"OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitysecuritydefaultsenforcementpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}",
+ "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileAppManagementPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies",
+ "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileAppManagementPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-list-includedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-list-includedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}",
+ "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobiledevicemanagementpolicies-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies",
+ "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphMobilityManagementPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobiledevicemanagementpolicies-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-list-includedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mobileappmanagementpolicies-list-includedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.MobilityManagement",
"Description": "Read and write your organization's mobility management policies",
"FullDescription": "Allows the app to read and write your organization's mobility management policies on your behalf. For example, a mobility management policy can set the enrollment scope for a given mobility management application.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}",
+ "OutputType": "IMicrosoftGraphPermissionGrantPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.PermissionGrant",
"Description": "Manage consent and permission grant policies",
"FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermissionGrantPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissiongrantpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/permissionGrantPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies",
+ "OutputType": "IMicrosoftGraphPermissionGrantPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.PermissionGrant",
"Description": "Manage consent and permission grant policies",
"FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermissionGrantPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissiongrantpolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/permissionGrantPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.PermissionGrant",
"Description": "Manage consent and permission grant policies",
"FullDescription": "Allows the app to manage policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}",
"OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes",
+ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissiongrantpolicy-list-excludes?view=graph-rest-1.0"
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyExcludeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyExcludeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}",
"OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes",
+ "OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPermissionGrantConditionSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permissiongrantpolicy-list-includes?view=graph-rest-1.0"
},
{
- "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.PermissionGrant",
"Description": "Read consent and permission grant policies",
"FullDescription": "Allows the app to read policies related to consent and permission grants for applications, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyPermissionGrantPolicyIncludeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyPermissionGrantPolicyIncludeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/policyroot-list-rolemanagementpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicyAssignments",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicyAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/policyroot-list-rolemanagementpolicyassignments?view=graph-rest-1.0"
},
{
- "Uri": "/policies/roleManagementPolicyAssignments/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicyAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrolemanagementpolicy-list-effectiverules?view=graph-rest-1.0"
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrolemanagementpolicyrule-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules",
+ "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrolemanagementpolicy-list-rules?view=graph-rest-1.0"
},
{
- "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "RoleManagementPolicy.Read.Directory",
+ "Description": "Read all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "RoleManagementPolicy.ReadWrite.Directory",
+ "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
+ "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagementPolicy.Read.Directory",
- "Description": "Read all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagementPolicy.ReadWrite.Directory",
- "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory",
- "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyRoleManagementPolicyRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyRoleManagementPolicyRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}",
"OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies",
"OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}",
"OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes",
"OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExcludeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExcludeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}",
"OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes",
"OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyIncludeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyIncludeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}",
+ "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tokenissuancepolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/tokenIssuancePolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenIssuancePolicies",
+ "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tokenissuancepolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenIssuancePolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenIssuancePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyTokenIssuancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenIssuancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}",
+ "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tokenlifetimepolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/policies/tokenLifetimePolicies",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenLifetimePolicies",
+ "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tokenlifetimepolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/policies/tokenLifetimePolicies/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/policies/tokenLifetimePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPolicyTokenLifetimePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPolicyTokenLifetimePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print",
"OutputType": "IMicrosoftGraphPrint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrint"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/connectors/{printConnector-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/connectors/{printConnector-id}",
+ "OutputType": "IMicrosoftGraphPrintConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintConnector.Read.All",
"Description": "Read print connectors",
"FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrintConnector.ReadWrite.All",
"Description": "Read and write print connectors",
"FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintConnector",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printconnector-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/connectors",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/connectors",
+ "OutputType": "IMicrosoftGraphPrintConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintConnector.Read.All",
"Description": "Read print connectors",
"FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrintConnector.ReadWrite.All",
"Description": "Read and write print connectors",
"FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/print-list-connectors?view=graph-rest-1.0"
},
{
- "Uri": "/print/connectors/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/connectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintConnector.Read.All",
"Description": "Read print connectors",
"FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrintConnector.ReadWrite.All",
"Description": "Read and write print connectors",
"FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/operations/{printOperation-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/operations/{printOperation-id}",
+ "OutputType": "IMicrosoftGraphPrintOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Printer.Create",
"Description": "Register printers ",
"FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
- },
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/operations",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/operations",
"OutputType": "IMicrosoftGraphPrintOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/operations/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}",
+ "OutputType": "IMicrosoftGraphPrinter",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinter",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinter",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/printers",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers",
+ "OutputType": "IMicrosoftGraphPrinter",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinter",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinter",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/print-list-printers?view=graph-rest-1.0"
},
{
- "Uri": "/print/printers/{printer-id}/getCapabilities",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/getCapabilities",
+ "OutputType": "IMicrosoftGraphPrinterCapabilities",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinterCapabilities",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterCapability"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterCapability",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}",
"OutputType": "IMicrosoftGraphPrintConnector",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterConnector",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/connectors",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/connectors",
+ "OutputType": "IMicrosoftGraphPrintConnector",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintConnector.Read.All",
"Description": "Read print connectors",
"FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrintConnector.ReadWrite.All",
"Description": "Read and write print connectors",
"FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintConnector",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterConnector"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterConnector",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-list-connectors?view=graph-rest-1.0"
},
{
- "Uri": "/print/printers/{printer-id}/connectors/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/connectors/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintConnector.Read.All",
"Description": "Read print connectors",
"FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrintConnector.ReadWrite.All",
"Description": "Read and write print connectors",
"FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterConnectorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterConnectorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintPrinterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}",
+ "OutputType": "IMicrosoftGraphPrintJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/jobs",
+ "OutputType": "IMicrosoftGraphPrintJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/jobs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}",
+ "OutputType": "IMicrosoftGraphPrintDocument",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintJob.Read",
"Description": "Read your print jobs",
"FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents",
"OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrintJob.Read",
"Description": "Read your print jobs",
"FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobDocumentContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobDocumentContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobDocumentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobDocumentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobTaskDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterJobTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterJobTaskTrigger",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}",
"OutputType": "IMicrosoftGraphPrinterShare",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
@@ -112970,3720 +130843,4216 @@
"GetViaIdentity1",
"GetViaIdentity2"
],
- "Command": "Get-MgBetaPrintPrinterShare"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShare",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares",
"OutputType": "IMicrosoftGraphPrinterShare",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaPrintPrinterShare"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShare",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedGroups",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedGroups",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedGroupByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedusers?view=graph-rest-1.0"
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUserByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUserByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedusers?view=graph-rest-1.0"
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/shares/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/shares/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
- },
{
"Name": "PrinterShare.ReadBasic.All",
"Description": "Read basic information about printer shares",
"FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}",
"OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs",
"OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}",
"OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents",
"OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobDocumentContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobDocumentContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobDocumentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobDocumentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterShareJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobTaskDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterShareJobTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterShareJobTaskTrigger",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printerShares/{printerShare-id}/printer",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printerShares/{printerShare-id}/printer",
"OutputType": "IMicrosoftGraphPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterSharePrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterSharePrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}",
+ "OutputType": "IMicrosoftGraphPrintTaskTrigger",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterTaskTrigger",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printtasktrigger-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/printers/{printer-id}/taskTriggers",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/taskTriggers",
+ "OutputType": "IMicrosoftGraphPrintTaskTrigger",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintPrinterTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterTaskTrigger",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-list-tasktriggers?view=graph-rest-1.0"
},
{
- "Uri": "/print/printers/{printer-id}/taskTriggers/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/printers/{printer-id}/taskTriggers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterTaskTriggerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterTaskTriggerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintPrinterTaskTriggerDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintPrinterTaskTriggerDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/services/{printService-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services/{printService-id}",
+ "OutputType": "IMicrosoftGraphPrintService",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintService",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintService"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintService",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printservice-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/services",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services",
+ "OutputType": "IMicrosoftGraphPrintService",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintService",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintService"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintService",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/print-list-services?view=graph-rest-1.0"
},
{
- "Uri": "/print/services/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintServiceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintServiceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}",
+ "OutputType": "IMicrosoftGraphPrintServiceEndpoint",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintServiceEndpoint",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintServiceEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintServiceEndpoint",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printserviceendpoint-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/services/{printService-id}/endpoints",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services/{printService-id}/endpoints",
+ "OutputType": "IMicrosoftGraphPrintServiceEndpoint",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintServiceEndpoint",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintServiceEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintServiceEndpoint",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printservice-list-endpoints?view=graph-rest-1.0"
},
{
- "Uri": "/print/services/{printService-id}/endpoints/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/services/{printService-id}/endpoints/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintAlertSettings.Read.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintAlertSettings.ReadWrite.All",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "PrintSettings.ReadWrite.All",
+ "Description": "Read and write tenant-wide print settings",
+ "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.Read.All",
- "Description": "Read print connectors",
- "FullDescription": "Allows the application to read print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintSettings.Read.All",
+ "Description": "Read tenant-wide print settings",
+ "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintConnector.ReadWrite.All",
- "Description": "Read and write print connectors",
- "FullDescription": "Allows the application to read and write print connectors on your behalf.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Create",
- "Description": "Register printers ",
- "FullDescription": "Allows the application to create (register) printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.Read.All",
- "Description": "Read printers",
- "FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Printer.ReadWrite.All",
- "Description": "Read and update printers",
- "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite",
+ "Description": "Read and update your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadBasic.All",
- "Description": "Read basic information about printer shares",
- "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrinterShare.ReadWrite.All",
- "Description": "Read and update printer shares",
- "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.Create",
"Description": "Create your print jobs",
"FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrinterShare.ReadWrite.All",
+ "Description": "Read and update printer shares",
+ "FullDescription": "Allows the application to read and update printer shares on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrinterShare.ReadBasic.All",
+ "Description": "Read basic information about printer shares",
+ "FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "Printer.ReadWrite.All",
+ "Description": "Read and update printers",
+ "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite",
- "Description": "Read and update your print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "Printer.Read.All",
+ "Description": "Read printers",
+ "FullDescription": "Allows the application to read printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "Printer.Create",
+ "Description": "Register printers ",
+ "FullDescription": "Allows the application to create (register) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintConnector.ReadWrite.All",
+ "Description": "Read and write print connectors",
+ "FullDescription": "Allows the application to read and write print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintConnector.Read.All",
+ "Description": "Read print connectors",
+ "FullDescription": "Allows the application to read print connectors on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.Read.All",
- "Description": "Read tenant-wide print settings",
- "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintSettings.ReadWrite.All",
- "Description": "Read and write tenant-wide print settings",
- "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.",
- "IsAdmin": true
+ "Name": "PrintAlertSettings.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintServiceEndpointCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintServiceEndpointCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}",
+ "OutputType": "IMicrosoftGraphPrinterShare",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
- },
{
"Name": "PrinterShare.ReadBasic.All",
"Description": "Read basic information about printer shares",
"FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinterShare",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShare"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShare",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares",
+ "OutputType": "IMicrosoftGraphPrinterShare",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
- },
{
"Name": "PrinterShare.ReadBasic.All",
"Description": "Read basic information about printer shares",
"FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinterShare",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShare"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShare",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/print-list-shares?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedGroups",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedGroups",
+ "OutputType": "IMicrosoftGraphGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedGroupByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedGroupByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedgroups?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedGroups/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareAllowedGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers",
+ "OutputType": "IMicrosoftGraphUser",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedusers?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedUserByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUserByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printershare-list-allowedusers?view=graph-rest-1.0"
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "PrinterShare.Read.All",
"Description": "Read printer shares",
"FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareAllowedUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareAllowedUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "PrinterShare.Read.All",
- "Description": "Read printer shares",
- "FullDescription": "Allows the application to read printer shares on your behalf. ",
- "IsAdmin": false
- },
{
"Name": "PrinterShare.ReadBasic.All",
"Description": "Read basic information about printer shares",
"FullDescription": "Allows the application to read basic information about printer shares on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrinterShare.ReadWrite.All",
"Description": "Read and update printer shares",
"FullDescription": "Allows the application to read and update printer shares on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "PrinterShare.Read.All",
+ "Description": "Read printer shares",
+ "FullDescription": "Allows the application to read printer shares on your behalf. ",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintShareCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}",
+ "OutputType": "IMicrosoftGraphPrintJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/jobs",
+ "OutputType": "IMicrosoftGraphPrintJob",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrintJob",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/$count",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/jobs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "PrintJob.Read",
- "Description": "Read your print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadBasic",
+ "Description": "Read basic information of your print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "PrintJob.Read.All",
- "Description": "Read print jobs",
- "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWriteBasic.All",
+ "Description": "Read and write basic information of print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic",
- "Description": "Read basic information of your print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.ReadWriteBasic",
+ "Description": "Read and write basic information of your print jobs",
+ "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadBasic.All",
- "Description": "Read basic information of print jobs",
- "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.ReadWrite.All",
+ "Description": "Read and update print jobs",
+ "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "PrintJob.ReadWrite",
"Description": "Read and update your print jobs",
"FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWrite.All",
- "Description": "Read and update print jobs",
- "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ",
- "IsAdmin": true
+ "Name": "PrintJob.ReadBasic.All",
+ "Description": "Read basic information of print jobs",
+ "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic",
- "Description": "Read and write basic information of your print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.",
- "IsAdmin": false
+ "Name": "PrintJob.Read.All",
+ "Description": "Read print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "PrintJob.ReadWriteBasic.All",
- "Description": "Read and write basic information of print jobs",
- "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.",
- "IsAdmin": true
+ "Name": "PrintJob.Read",
+ "Description": "Read your print jobs",
+ "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}",
"OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents",
"OutputType": "IMicrosoftGraphPrintDocument",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareJobDocument"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobDocument",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobDocumentContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobDocumentContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobDocumentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobDocumentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintShareJobTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobTask",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobTaskDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger",
"OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintShareJobTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintShareJobTaskTrigger",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/shares/{printerShare-id}/printer",
"Module": "Beta.Devices.CloudPrint",
+ "Uri": "/print/shares/{printerShare-id}/printer",
+ "OutputType": "IMicrosoftGraphPrinter",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Printer.FullControl.All",
- "Description": "Register, read, update, and unregister printers",
- "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
- "IsAdmin": true
- },
{
"Name": "Printer.Read.All",
"Description": "Read printers",
"FullDescription": "Allows the application to read printers on your behalf. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Printer.ReadWrite.All",
"Description": "Read and update printers",
"FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Printer.FullControl.All",
+ "Description": "Register, read, update, and unregister printers",
+ "FullDescription": "Allows the application to create (register), read, update, and delete (unregister) printers on your behalf. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrinter",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintSharePrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintSharePrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/taskDefinitions/{printTaskDefinition-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/{printTaskDefinition-id}",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaPrintTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printtaskdefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/taskDefinitions",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions",
"OutputType": "IMicrosoftGraphPrintTaskDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintTaskDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/print-list-taskdefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/print/taskDefinitions/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrintTaskDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintTaskDefinitionTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinitionTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printtask-get?view=graph-rest-1.0"
},
{
- "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks",
"OutputType": "IMicrosoftGraphPrintTask",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrintTaskDefinitionTask"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinitionTask",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printtaskdefinition-list-tasks?view=graph-rest-1.0"
},
{
- "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": {
- "Name": "PrintTaskDefinition.ReadWrite.All",
- "Description": "Read, write and update print task definitions",
- "FullDescription": "Allows the application to read and update print task definitions without a signed-in user. ",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintTaskDefinitionTaskCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinitionTaskCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger",
"Module": "Beta.Devices.CloudPrint",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger",
"OutputType": "IMicrosoftGraphPrintTaskTrigger",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrintTaskDefinitionTaskTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrintTaskDefinitionTaskTrigger",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}",
"Module": "Beta.Compliance",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}",
+ "OutputType": "IMicrosoftGraphSubjectRightsRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubjectRightsRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/privacy/subjectRightsRequests",
"Module": "Beta.Compliance",
+ "Uri": "/privacy/subjectRightsRequests",
+ "OutputType": "IMicrosoftGraphSubjectRightsRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubjectRightsRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/$count",
"Module": "Beta.Compliance",
+ "Uri": "/privacy/subjectRightsRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}",
"OutputType": "IMicrosoftGraphAuthoredNote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes",
"Module": "Beta.Compliance",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes",
+ "OutputType": "IMicrosoftGraphAuthoredNote",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthoredNote",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestNote",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0"
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count",
"Module": "Beta.Compliance",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestNoteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestNoteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team",
"Module": "Beta.Compliance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team",
"OutputType": "IMicrosoftGraphTeam",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivacySubjectRightsRequestTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivacySubjectRightsRequestTeam",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}",
"OutputType": "IMicrosoftGraphPrivilegedAccess",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess",
"OutputType": "IMicrosoftGraphPrivilegedAccess",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivilegedAccessCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/governanceresource-list?view=graph-rest-1.0"
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceParent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceParent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentLinkedEligibleRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentLinkedEligibleRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject",
"OutputType": "IMicrosoftGraphGovernanceSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject",
"OutputType": "IMicrosoftGraphGovernanceSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentLinkedEligibleRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentLinkedEligibleRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests",
"OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject",
"OutputType": "IMicrosoftGraphGovernanceSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject",
"OutputType": "IMicrosoftGraphGovernanceSubject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentSubject"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentSubject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/governancerolesetting-get?view=graph-rest-1.0"
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings",
"OutputType": "IMicrosoftGraphGovernanceRoleSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource",
"OutputType": "IMicrosoftGraphGovernanceResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleSettingResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleSettingResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition",
"OutputType": "IMicrosoftGraphGovernanceRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedAccessRoleSettingRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedAccessRoleSettingRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PrivilegedAccess.ReadWrite.AzureAD",
- "Description": "Read and write privileged access to Azure AD",
- "FullDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}",
"OutputType": "IMicrosoftGraphPrivilegedApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PrivilegedAccess.ReadWrite.AzureAD",
- "Description": "Read and write privileged access to Azure AD",
- "FullDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval",
"OutputType": "IMicrosoftGraphPrivilegedApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "PrivilegedAccess.ReadWrite.AzureAD",
- "Description": "Read and write privileged access to Azure AD",
- "FullDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivilegedApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/request",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/request",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo",
"OutputType": "IMicrosoftGraphPrivilegedRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings",
"OutputType": "IMicrosoftGraphPrivilegedRoleSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary",
"OutputType": "IMicrosoftGraphPrivilegedRoleSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}",
"OutputType": "IMicrosoftGraphPrivilegedOperationEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedOperationEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedOperationEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedOperationEvents",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedOperationEvents",
"OutputType": "IMicrosoftGraphPrivilegedOperationEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedOperationEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedOperationEvent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedOperationEvents/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedOperationEvents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivilegedOperationEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedOperationEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoles/{privilegedRole-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoles/{privilegedRole-id}",
"OutputType": "IMicrosoftGraphPrivilegedRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoles",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoles",
"OutputType": "IMicrosoftGraphPrivilegedRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/privilegedRoleAssignmentRequests",
+ "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrivilegedAccess.ReadWrite.AzureAD",
"Description": "Read and write privileged access to Azure AD",
"FullDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/privilegedRoleAssignmentRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "PrivilegedAccess.ReadWrite.AzureAD",
"Description": "Read and write privileged access to Azure AD",
"FullDescription": "Allows the app to request and manage just in time elevation (including scheduled elevation) of users to Azure AD built-in administrative roles, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo",
"OutputType": "IMicrosoftGraphPrivilegedRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings",
"OutputType": "IMicrosoftGraphPrivilegedRoleSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary",
"OutputType": "IMicrosoftGraphPrivilegedRoleSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo",
"OutputType": "IMicrosoftGraphPrivilegedRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfo"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings",
"OutputType": "IMicrosoftGraphPrivilegedRoleSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary",
"OutputType": "IMicrosoftGraphPrivilegedRoleSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoles/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaPrivilegedRoleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaPrivilegedRoleRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoleAssignments",
"OutputType": "IMicrosoftGraphPrivilegedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaPrivilegedRoleRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoles/{privilegedRole-id}/settings",
"Module": "Beta.Identity.Governance",
- "Permissions": {
- "Name": "Directory.AccessAsUser.All",
- "Description": "Access the directory as you",
- "FullDescription": "Allows the app to have the same access to information in your work or school directory as you do.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoles/{privilegedRole-id}/settings",
"OutputType": "IMicrosoftGraphPrivilegedRoleSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/privilegedRoles/{privilegedRole-id}/summary",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/privilegedRoles/{privilegedRole-id}/summary",
"OutputType": "IMicrosoftGraphPrivilegedRoleSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaPrivilegedRoleSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaPrivilegedRoleSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programs/{program-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/programs/{program-id}",
"OutputType": "IMicrosoftGraphProgram",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaProgram"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgram",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programs",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programs",
+ "OutputType": "IMicrosoftGraphProgram",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProgram",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaProgram"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgram",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-list?view=graph-rest-1.0"
},
{
- "Uri": "/programControls/{programControl-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/programControls/{programControl-id}",
"OutputType": "IMicrosoftGraphProgramControl",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
@@ -116692,55 +135061,65 @@
"GetViaIdentity1",
"GetViaIdentity2"
],
- "Command": "Get-MgBetaProgramControl"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControl",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programControls",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programControls",
+ "OutputType": "IMicrosoftGraphProgramControl",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProgramControl",
- "Method": "GET",
"Variants": [
"List",
"List1",
"List2"
],
- "Command": "Get-MgBetaProgramControl"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControl",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-list?view=graph-rest-1.0"
},
{
- "Uri": "/programControls/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programControls/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
@@ -116748,15332 +135127,16945 @@
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaProgramControlCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControlCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programControls/{programControl-id}/program",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/programControls/{programControl-id}/program",
"OutputType": "IMicrosoftGraphProgram",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaProgramControlProgram"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControlProgram",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programControlTypes/{programControlType-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/programControlTypes/{programControlType-id}",
"OutputType": "IMicrosoftGraphProgramControlType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaProgramControlType"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControlType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programControlTypes",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programControlTypes",
+ "OutputType": "IMicrosoftGraphProgramControlType",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphProgramControlType",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaProgramControlType"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControlType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontroltype-list?view=graph-rest-1.0"
},
{
- "Uri": "/programControlTypes/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programControlTypes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaProgramControlTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramControlTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/programs/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/programs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ProgramControl.Read.All",
"Description": "Read all programs",
"FullDescription": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ProgramControl.ReadWrite.All",
"Description": "Manage all programs",
"FullDescription": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaProgramCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaProgramCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/appCredentialSignInActivities/{appCredentialSignInActivity-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/appCredentialSignInActivities/{appCredentialSignInActivity-id}",
"OutputType": "IMicrosoftGraphAppCredentialSignInActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportAppCredentialSignInActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAppCredentialSignInActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appcredentialsigninactivity-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/appCredentialSignInActivities",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/appCredentialSignInActivities",
"OutputType": "IMicrosoftGraphAppCredentialSignInActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportAppCredentialSignInActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAppCredentialSignInActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-appcredentialsigninactivities?view=graph-rest-1.0"
},
{
- "Uri": "/reports/appCredentialSignInActivities/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/appCredentialSignInActivities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAppCredentialSignInActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAppCredentialSignInActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}",
"OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportApplicationSignInDetailedSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportApplicationSignInDetailedSummary",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationsignindetailedsummary-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/applicationSignInDetailedSummary",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/applicationSignInDetailedSummary",
"OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportApplicationSignInDetailedSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportApplicationSignInDetailedSummary",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-applicationsignindetailedsummary?view=graph-rest-1.0"
},
{
- "Uri": "/reports/applicationSignInDetailedSummary/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/applicationSignInDetailedSummary/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportApplicationSignInDetailedSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportApplicationSignInDetailedSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getAttackSimulationRepeatOffenders",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getAttackSimulationRepeatOffenders",
"OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAttackSimulationRepeatOffender"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAttackSimulationRepeatOffender",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getAttackSimulationTrainingUserCoverage",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getAttackSimulationTrainingUserCoverage",
"OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAttackSimulationTrainingUserCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAttackSimulationTrainingUserCoverage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getAttackSimulationSimulationUserCoverage",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getAttackSimulationSimulationUserCoverage",
"OutputType": "IMicrosoftGraphAttackSimulationUserCoverage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAttackSimulationUserCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAttackSimulationUserCoverage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/authenticationMethods",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/authenticationMethods",
"OutputType": "IMicrosoftGraphAuthenticationMethodsRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAuthenticationMethod"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAuthenticationMethod",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}",
"Module": "Beta.Reports",
+ "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}",
+ "OutputType": "IMicrosoftGraphUserRegistrationDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "UserAuthenticationMethod.Read.All",
"Description": "Read all users' authentication methods",
"FullDescription": "Allows the app to read authentication methods of all users in your organization, without a signed-in user. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserRegistrationDetails",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userregistrationdetails-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/authenticationMethods/userRegistrationDetails",
"Module": "Beta.Reports",
+ "Uri": "/reports/authenticationMethods/userRegistrationDetails",
+ "OutputType": "IMicrosoftGraphUserRegistrationDetails",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "UserAuthenticationMethod.Read.All",
"Description": "Read all users' authentication methods",
"FullDescription": "Allows the app to read authentication methods of all users in your organization, without a signed-in user. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUserRegistrationDetails",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-list-userregistrationdetails?view=graph-rest-1.0"
},
{
- "Uri": "/reports/authenticationMethods/userRegistrationDetails/$count",
"Module": "Beta.Reports",
+ "Uri": "/reports/authenticationMethods/userRegistrationDetails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "AuditLog.Read.All",
"Description": "Read all audit log data",
"FullDescription": "Allows the app to read and query your audit log activities, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "UserAuthenticationMethod.Read.All",
"Description": "Read all users' authentication methods",
"FullDescription": "Allows the app to read authentication methods of all users in your organization, without a signed-in user. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')",
"OutputType": "IMicrosoftGraphApplicationSignInSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportAzureAdApplicationSignInSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportAzureAdApplicationSignInSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getBrowserDistributionUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getBrowserDistributionUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportBrowserDistributionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportBrowserDistributionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getBrowserUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getBrowserUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportBrowserUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportBrowserUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getBrowserUserDetail(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getBrowserUserDetail(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportBrowserUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportBrowserUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getCredentialUsageSummary(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getCredentialUsageSummary(period='{period}')",
"OutputType": "IMicrosoftGraphCredentialUsageSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportCredentialUsageSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportCredentialUsageSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getCredentialUserRegistrationCount",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getCredentialUserRegistrationCount",
"OutputType": "IMicrosoftGraphCredentialUserRegistrationCount",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportCredentialUserRegistrationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportCredentialUserRegistrationCount",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialuserregistrationcount?view=graph-rest-1.0"
},
{
- "Uri": "/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}",
"OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportCredentialUserRegistrationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportCredentialUserRegistrationDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/credentialUserRegistrationDetails",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/credentialUserRegistrationDetails",
"OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportCredentialUserRegistrationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportCredentialUserRegistrationDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-credentialuserregistrationdetails?view=graph-rest-1.0"
},
{
- "Uri": "/reports/credentialUserRegistrationDetails/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/credentialUserRegistrationDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportCredentialUserRegistrationDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportCredentialUserRegistrationDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsage/{printUsage-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsage/{printUsage-id}",
"OutputType": "IMicrosoftGraphPrintUsage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportDailyPrintUsage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsage",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsage",
"OutputType": "IMicrosoftGraphPrintUsage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportDailyPrintUsage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByPrinter",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printusagebyprinter-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/dailyPrintUsageByPrinter",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByPrinter",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByPrinter",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-dailyprintusagebyprinter?view=graph-rest-1.0"
},
{
- "Uri": "/reports/dailyPrintUsageByPrinter/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByPrinter/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByPrinterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByPrinterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printusagebyuser-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/dailyPrintUsageByUser",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByUser",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-dailyprintusagebyuser?view=graph-rest-1.0"
},
{
- "Uri": "/reports/dailyPrintUsageByUser/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageByUser/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportDailyPrintUsageByUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageByUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsage/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsage/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportDailyPrintUsageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByPrinter",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByPrinter",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByPrinter/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByPrinter/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByUser",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByUser",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/dailyPrintUsageSummariesByUser/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/dailyPrintUsageSummariesByUser/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/deviceConfigurationDeviceActivity",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/deviceConfigurationDeviceActivity",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Device"
],
- "Command": "Get-MgBetaReportDeviceConfigurationDeviceActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDeviceConfigurationDeviceActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/deviceConfigurationUserActivity",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "DeviceManagementConfiguration.Read.All",
- "Description": "Read Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/deviceConfigurationUserActivity",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Device"
],
- "Command": "Get-MgBetaReportDeviceConfigurationUserActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportDeviceConfigurationUserActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportEmailActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportEmailActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportEmailActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportEmailAppUsageAppUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailAppUsageAppUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportEmailAppUsageUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailAppUsageUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailAppUsageUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailAppUsageUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportEmailAppUsageUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailAppUsageUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportEmailAppUsageVersionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportEmailAppUsageVersionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getFormsUserActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getFormsUserActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportFormUserActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportFormUserActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getFormsUserActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getFormsUserActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportFormUserActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportFormUserActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getFormsUserActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getFormsUserActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportFormUserActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportFormUserActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"OutputType": "IMicrosoftGraphArchivedPrintJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportGroupArchivedPrintJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportGroupArchivedPrintJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportM365AppPlatformUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportM365AppPlatformUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getM365AppUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getM365AppUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportM365AppUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportM365AppUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getM365AppUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getM365AppUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportM365AppUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportM365AppUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getMailboxUsageDetail(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getMailboxUsageDetail(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMailboxUsageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMailboxUsageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMailboxUsageMailboxCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMailboxUsageMailboxCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getMailboxUsageStorage(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getMailboxUsageStorage(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMailboxUsageStorage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMailboxUsageStorage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Detail",
"DetailViaIdentity"
],
- "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Managed",
"ManagedViaIdentity"
],
- "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/managedDeviceEnrollmentFailureDetails",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/managedDeviceEnrollmentFailureDetails",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Detail",
"Detail1",
"DetailViaIdentity"
],
- "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/managedDeviceEnrollmentFailureTrends",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/managedDeviceEnrollmentFailureTrends",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Managed"
],
- "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureTrend"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureTrend",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/managedDeviceEnrollmentTopFailures",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "DeviceManagementManagedDevices.ReadWrite.All",
- "Description": "Read and write Microsoft Intune devices",
- "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/managedDeviceEnrollmentTopFailures",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Top",
"Top1",
"TopViaIdentity"
],
- "Command": "Get-MgBetaReportManagedDeviceEnrollmentTopFailure"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportManagedDeviceEnrollmentTopFailure",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageByPrinter",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByPrinter",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-monthlyprintusagebyprinter?view=graph-rest-1.0"
},
{
- "Uri": "/reports/monthlyPrintUsageByPrinter/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByPrinter/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageByUser",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByUser",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-monthlyprintusagebyuser?view=graph-rest-1.0"
},
{
- "Uri": "/reports/monthlyPrintUsageByUser/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageByUser/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageByUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageByUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByPrinter",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByPrinter",
"OutputType": "IMicrosoftGraphPrintUsageByPrinter",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinterCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinterCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByUser",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByUser",
"OutputType": "IMicrosoftGraphPrintUsageByUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/monthlyPrintUsageSummariesByUser/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/monthlyPrintUsageSummariesByUser/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ActivationCounts",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ActivationCounts",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportOffice365ActivationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ActivationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ActivationsUserCounts",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ActivationsUserCounts",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportOffice365ActivationUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ActivationUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ActivationsUserDetail",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ActivationsUserDetail",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportOffice365ActivationUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ActivationUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365ActiveUserCounts",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365ActiveUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ActiveUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ActiveUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ActiveUserDetail(date={date})",
"OutputType": "IMicrosoftGraphOffice365ActiveUserDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportOffice365ActiveUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ActiveUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365GroupActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365GroupActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})",
"OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportOffice365GroupActivityDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365GroupActivityDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365GroupActivityFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365GroupActivityFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365GroupActivityGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365GroupActivityGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365GroupActivityStorage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365GroupActivityStorage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')",
"OutputType": "IMicrosoftGraphOffice365ServicesUserCounts",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOffice365ServiceUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOffice365ServiceUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOneDriveActivityFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveActivityFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOneDriveActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportOneDriveActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOneDriveUsageAccountCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveUsageAccountCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportOneDriveUsageAccountDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveUsageAccountDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOneDriveUsageFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveUsageFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getOneDriveUsageStorage(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getOneDriveUsageStorage(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportOneDriveUsageStorage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportOneDriveUsageStorage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners",
"OutputType": "IMicrosoftGraphPartners",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartner"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing",
"OutputType": "IMicrosoftGraphPartnersBilling",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBilling"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBilling",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/manifests/{manifest-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/manifests/{manifest-id}",
"OutputType": "IMicrosoftGraphPartnersBillingManifest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportPartnerBillingManifest"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingManifest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-manifest-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/manifests",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/manifests",
"OutputType": "IMicrosoftGraphPartnersBillingManifest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportPartnerBillingManifest"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingManifest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/manifests/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/manifests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingManifestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingManifestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/operations/{operation-id}",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "PartnerBilling.Read.All",
- "Description": "Read all billing data for your company's tenant",
- "FullDescription": "Allows the app to read all of billing data from Microsoft for your company's tenant, without a signed-in user. This includes reading billed and unbilled azure usage and invoice reconciliation data.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/operations/{operation-id}",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportPartnerBillingOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-operation-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/partners/billing/operations",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/operations",
"OutputType": "IMicrosoftGraphPartnersBillingOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportPartnerBillingOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/operations/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/reconciliation",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/reconciliation",
"OutputType": "IMicrosoftGraphPartnersBillingReconciliation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingReconciliation"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingReconciliation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/reconciliation/billed",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/reconciliation/billed",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingReconciliationBilled"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingReconciliationBilled",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/usage",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/usage",
"OutputType": "IMicrosoftGraphPartnersBillingAzureUsage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingUsage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingUsage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/usage/billed",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/usage/billed",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingUsageBilled"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingUsageBilled",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/partners/billing/usage/unbilled",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/partners/billing/usage/unbilled",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportPartnerBillingUsageUnbilled"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPartnerBillingUsageUnbilled",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"OutputType": "IMicrosoftGraphArchivedPrintJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportPrinterArchivedPrintJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportPrinterArchivedPrintJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')",
"OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportRelyingPartyDetailedSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportRelyingPartyDetailedSummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/security",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/security",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSecurity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSecurity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/security/getAttackSimulationRepeatOffenders",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/security/getAttackSimulationRepeatOffenders",
"OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSecurityAttackSimulationRepeatOffender"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSecurityAttackSimulationRepeatOffender",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage",
"OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSecurityAttackSimulationTrainingUserCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSecurityAttackSimulationTrainingUserCoverage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage",
"OutputType": "IMicrosoftGraphAttackSimulationUserCoverage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSecurityAttackSimulationUserCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSecurityAttackSimulationUserCoverage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportServiceActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessCompliantDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessCompliantDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"OutputType": "IMicrosoftGraphServiceActivityValueMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessCompliantDeviceSignInSuccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessCompliantDeviceSignInSuccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessManagedDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessManagedDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"OutputType": "IMicrosoftGraphServiceActivityValueMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessManagedDeviceSignInSuccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessManagedDeviceSignInSuccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity/getMetricsForMfaSignInFailure(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity/getMetricsForMfaSignInFailure(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"OutputType": "IMicrosoftGraphServiceActivityValueMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInFailure"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInFailure",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity/getMetricsForMfaSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity/getMetricsForMfaSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"OutputType": "IMicrosoftGraphServiceActivityValueMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInSuccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInSuccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/serviceActivity/getMetricsForSamlSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/serviceActivity/getMetricsForSamlSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)",
"OutputType": "IMicrosoftGraphServiceActivityValueMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServiceActivityMetricForSamlSignInSuccess"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServiceActivityMetricForSamlSignInSuccess",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/servicePrincipalSignInActivities/{servicePrincipalSignInActivity-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/servicePrincipalSignInActivities/{servicePrincipalSignInActivity-id}",
"OutputType": "IMicrosoftGraphServicePrincipalSignInActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportServicePrincipalSignInActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServicePrincipalSignInActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipalsigninactivity-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/servicePrincipalSignInActivities",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/servicePrincipalSignInActivities",
"OutputType": "IMicrosoftGraphServicePrincipalSignInActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportServicePrincipalSignInActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServicePrincipalSignInActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-serviceprincipalsigninactivities?view=graph-rest-1.0"
},
{
- "Uri": "/reports/servicePrincipalSignInActivities/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/servicePrincipalSignInActivities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportServicePrincipalSignInActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportServicePrincipalSignInActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointActivityFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointActivityFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointActivityPages(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointActivityPages(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointActivityPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointActivityPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportSharePointActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointSiteUsageDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointSiteUsageDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportSharePointSiteUsageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointSiteUsageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointSiteUsageFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointSiteUsageFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointSiteUsagePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointSiteUsagePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointSiteUsageSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointSiteUsageSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSharePointSiteUsageStorage"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSharePointSiteUsageStorage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportSkypeForBusinessActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageDistributionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageDistributionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityMinuteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityMinuteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityMinuteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityMinuteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityMinuteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityMinuteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/sla",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/sla",
"OutputType": "IMicrosoftGraphServiceLevelAgreementRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSla"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSla",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/sla/azureADAuthentication",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/sla/azureADAuthentication",
"OutputType": "IMicrosoftGraphAzureAdAuthentication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportSlaAzureAdAuthentication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportSlaAzureAdAuthentication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/azureadauthentication-get?view=graph-rest-1.0"
},
{
- "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsTeamActivityDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsTeamActivityDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportTeamActivityDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamActivityDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamActivityDistributionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamActivityDistributionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsTeamCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsTeamCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamDeviceUsageDistributionTotalUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamDeviceUsageDistributionTotalUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamDeviceUsageDistributionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamDeviceUsageDistributionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsDeviceUsageTotalUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsDeviceUsageTotalUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamDeviceUsageTotalUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamDeviceUsageTotalUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamDeviceUsageUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamDeviceUsageUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportTeamDeviceUsageUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamDeviceUsageUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityDistributionTotalUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityDistributionTotalUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityDistributionTotalUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityDistributionTotalUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityDistributionUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityDistributionUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityDistributionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityDistributionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityTotalCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityTotalCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityTotalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityTotalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityTotalDistributionCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityTotalDistributionCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityTotalDistributionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityTotalDistributionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityTotalUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityTotalUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityTotalUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityTotalUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportTeamUserActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportTeamUserActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportTeamUserActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})",
"OutputType": "IMicrosoftGraphArchivedPrintJob",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserArchivedPrintJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserArchivedPrintJob",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}",
"OutputType": "IMicrosoftGraphUserCredentialUsageDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserCredentialUsageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserCredentialUsageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userCredentialUsageDetails",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/userCredentialUsageDetails",
"OutputType": "IMicrosoftGraphUserCredentialUsageDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserCredentialUsageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserCredentialUsageDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-list-usercredentialusagedetails?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userCredentialUsageDetails/$count",
"Module": "Beta.Reports",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/reports/userCredentialUsageDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserCredentialUsageDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserCredentialUsageDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights",
"OutputType": "IMicrosoftGraphUserInsightsRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsight"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsight",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily",
"OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDaily"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDaily",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/activeUsers/{activeUsersMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsers/{activeUsersMetric-id}",
"OutputType": "IMicrosoftGraphActiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/activeUsers",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsers",
"OutputType": "IMicrosoftGraphActiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-activeusers?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/daily/activeUsersBreakdown/{activeUsersBreakdownMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsersBreakdown/{activeUsersBreakdownMetric-id}",
"OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/activeUsersBreakdown",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsersBreakdown",
"OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-activeusersbreakdown?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/daily/activeUsersBreakdown/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsersBreakdown/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdownCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdownCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/activeUsers/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/activeUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyActiveUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyActiveUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/authentications/{authenticationsMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/authentications/{authenticationsMetric-id}",
"OutputType": "IMicrosoftGraphAuthenticationsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyAuthentication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyAuthentication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/authentications",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/authentications",
"OutputType": "IMicrosoftGraphAuthenticationsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyAuthentication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyAuthentication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-authentications?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/daily/authentications/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/authentications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyAuthenticationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyAuthenticationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsers/{dailyInactiveUsersMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsers/{dailyInactiveUsersMetric-id}",
"OutputType": "IMicrosoftGraphDailyInactiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsers",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsers",
"OutputType": "IMicrosoftGraphDailyInactiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/{dailyInactiveUsersByApplicationMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/{dailyInactiveUsersByApplicationMetric-id}",
"OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsersByApplication",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsersByApplication",
"OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/inactiveUsers/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/inactiveUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyInactiveUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyInactiveUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/mfaCompletions/{mfaCompletionMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/mfaCompletions/{mfaCompletionMetric-id}",
"OutputType": "IMicrosoftGraphMfaCompletionMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/mfaCompletions",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/mfaCompletions",
"OutputType": "IMicrosoftGraphMfaCompletionMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-mfacompletions?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/daily/mfaCompletions/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/mfaCompletions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailyMfaCompletionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyMfaCompletionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/signUps/{userSignUpMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/signUps/{userSignUpMetric-id}",
"OutputType": "IMicrosoftGraphUserSignUpMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailySignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySignUp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/signUps",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/signUps",
"OutputType": "IMicrosoftGraphUserSignUpMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailySignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySignUp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-signups?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/daily/signUps/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/signUps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailySignUpCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySignUpCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/summary/{insightSummary-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/summary/{insightSummary-id}",
"OutputType": "IMicrosoftGraphInsightSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/summary",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/summary",
"OutputType": "IMicrosoftGraphInsightSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/summary/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/summary/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightDailySummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailySummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/userCount/{userCountMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/userCount/{userCountMetric-id}",
"OutputType": "IMicrosoftGraphUserCountMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightDailyUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/daily/userCount",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/daily/userCount",
"OutputType": "IMicrosoftGraphUserCountMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightDailyUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightDailyUserCount",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/dailyuserinsightmetricsroot-list-usercount?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly",
"OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthly"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthly",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/activeUsers/{activeUsersMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsers/{activeUsersMetric-id}",
"OutputType": "IMicrosoftGraphActiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/activeUsers",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsers",
"OutputType": "IMicrosoftGraphActiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-activeusers?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/{activeUsersBreakdownMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/{activeUsersBreakdownMetric-id}",
"OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/activeUsersBreakdown",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsersBreakdown",
"OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-activeusersbreakdown?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdownCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdownCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/activeUsers/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/activeUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/authentications/{authenticationsMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/authentications/{authenticationsMetric-id}",
"OutputType": "IMicrosoftGraphAuthenticationsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/authentications",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/authentications",
"OutputType": "IMicrosoftGraphAuthenticationsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-authentications?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/authentications/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/authentications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyAuthenticationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyAuthenticationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsers/{monthlyInactiveUsersMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsers/{monthlyInactiveUsersMetric-id}",
"OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsers",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsers",
"OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/{monthlyInactiveUsersByApplicationMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/{monthlyInactiveUsersByApplicationMetric-id}",
"OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication",
"OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplicationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplicationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/inactiveUsers/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/inactiveUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/mfaCompletions/{mfaCompletionMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/mfaCompletions/{mfaCompletionMetric-id}",
"OutputType": "IMicrosoftGraphMfaCompletionMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/mfaCompletions",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/mfaCompletions",
"OutputType": "IMicrosoftGraphMfaCompletionMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-mfacompletions?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/mfaCompletions/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/mfaCompletions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/requests/{userRequestsMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/requests/{userRequestsMetric-id}",
"OutputType": "IMicrosoftGraphUserRequestsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/requests",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/requests",
"OutputType": "IMicrosoftGraphUserRequestsMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-requests?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/requests/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/requests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlyRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlyRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/signUps/{userSignUpMetric-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/signUps/{userSignUpMetric-id}",
"OutputType": "IMicrosoftGraphUserSignUpMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySignUp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/signUps",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/signUps",
"OutputType": "IMicrosoftGraphUserSignUpMetric",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySignUp"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySignUp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/monthlyuserinsightmetricsroot-list-signups?view=graph-rest-1.0"
},
{
- "Uri": "/reports/userInsights/monthly/signUps/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/signUps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySignUpCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySignUpCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/summary/{insightSummary-id}",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/summary/{insightSummary-id}",
"OutputType": "IMicrosoftGraphInsightSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/summary",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/summary",
"OutputType": "IMicrosoftGraphInsightSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySummary",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/userInsights/monthly/summary/$count",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/userInsights/monthly/summary/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaReportUserInsightMonthlySummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportUserInsightMonthlySummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerActivityUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerActivityUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerActivityUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerActivityUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerActivityUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerActivityUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportYammerActivityUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerActivityUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerDeviceUsageDistributionUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerDeviceUsageDistributionUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerDeviceUsageUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerDeviceUsageUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportYammerDeviceUsageUserDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerDeviceUsageUserDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerGroupActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerGroupActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerGroupsActivityDetail(date={date})",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerGroupsActivityDetail(date={date})",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaReportYammerGroupActivityDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerGroupActivityDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')",
"Module": "Beta.Reports",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaReportYammerGroupActivityGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaReportYammerGroupActivityGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskDetections/{riskDetection-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskDetections/{riskDetection-id}",
"OutputType": "IMicrosoftGraphRiskDetection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskDetection"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskDetection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskdetection-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskDetections",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskDetections",
"OutputType": "IMicrosoftGraphRiskDetection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRiskDetection"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskDetection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskdetection-list?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskDetections/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskDetections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRiskDetectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskDetectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}",
+ "OutputType": "IMicrosoftGraphRiskyServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyServicePrincipal.Read.All",
"Description": "Read all identity risky service principal information",
"FullDescription": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
"Description": "Read and write all identity risky service principal information",
"FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRiskyServicePrincipal",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipal",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyServicePrincipals",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyServicePrincipals",
+ "OutputType": "IMicrosoftGraphRiskyServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyServicePrincipal.Read.All",
"Description": "Read all identity risky service principal information",
"FullDescription": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
"Description": "Read and write all identity risky service principal information",
"FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRiskyServicePrincipal",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRiskyServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipal",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityprotectionroot-list-riskyserviceprincipals?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyServicePrincipals/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyServicePrincipal.Read.All",
"Description": "Read all identity risky service principal information",
"FullDescription": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
"Description": "Read and write all identity risky service principal information",
"FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRiskyServicePrincipalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}",
"OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyServicePrincipalHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipalHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history",
+ "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyServicePrincipal.Read.All",
"Description": "Read all identity risky service principal information",
"FullDescription": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
"Description": "Read and write all identity risky service principal information",
"FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRiskyServicePrincipalHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipalHistory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-list-history?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyServicePrincipal.Read.All",
"Description": "Read all identity risky service principal information",
"FullDescription": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyServicePrincipal.ReadWrite.All",
"Description": "Read and write all identity risky service principal information",
"FullDescription": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyServicePrincipalHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyServicePrincipalHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyUsers/{riskyUser-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyUser.Read.All",
- "Description": "Read all identity risky user information",
- "FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyUsers/{riskyUser-id}",
"OutputType": "IMicrosoftGraphRiskyUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyUsers",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyUser.Read.All",
- "Description": "Read all identity risky user information",
- "FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyUsers",
"OutputType": "IMicrosoftGraphRiskyUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRiskyUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUser",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyUsers/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskyUser.Read.All",
- "Description": "Read all identity risky user information",
- "FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/riskyUsers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRiskyUserCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUserCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}",
+ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyUser.Read.All",
"Description": "Read all identity risky user information",
"FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyUser.ReadWrite.All",
"Description": "Read and write all risky user information",
"FullDescription": "Allows the app to read and update identity risky user information for your organization without a signed-in user. Update operations include dismissing risky users.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRiskyUserHistoryItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyUserHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUserHistory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuserhistoryitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history",
+ "OutputType": "IMicrosoftGraphRiskyUserHistoryItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyUser.Read.All",
"Description": "Read all identity risky user information",
"FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyUser.ReadWrite.All",
"Description": "Read and write all risky user information",
"FullDescription": "Allows the app to read and update identity risky user information for your organization without a signed-in user. Update operations include dismissing risky users.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRiskyUserHistoryItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRiskyUserHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUserHistory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-list-history?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/$count",
"Module": "Beta.Identity.SignIns",
+ "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "IdentityRiskyUser.Read.All",
"Description": "Read all identity risky user information",
"FullDescription": "Allows the app to read the identity risky user information for your organization without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "IdentityRiskyUser.ReadWrite.All",
"Description": "Read and write all risky user information",
"FullDescription": "Allows the app to read and update identity risky user information for your organization without a signed-in user. Update operations include dismissing risky users.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRiskyUserHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRiskyUserHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement",
+ "OutputType": "IMicrosoftGraphRoleManagement",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRoleManagement",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC",
"OutputType": "IMicrosoftGraphRbacApplicationMultiple",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementCloudPc"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPc",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentmultiple-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplicationmultiple-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/roleDefinitions",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleDefinitions",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/cloudPC/roleDefinitions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/cloudPC/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement",
+ "OutputType": "IMicrosoftGraphRbacApplicationMultiple",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune device configuration and policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementConfiguration.ReadWrite.All",
- "Description": "Read and write Microsoft Intune device configuration and policies",
- "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementConfiguration.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune device configuration and policies",
+ "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRbacApplicationMultiple",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentmultiple-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplicationmultiple-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/roleDefinitions",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleDefinitions",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/deviceManagement/roleDefinitions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/deviceManagement/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
- },
{
"Name": "DeviceManagementRBAC.Read.All",
"Description": "Read Microsoft Intune RBAC settings",
"FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory",
"OutputType": "IMicrosoftGraphRbacApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces",
+ "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplicationmultiple-list-resourcenamespaces?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
+ "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignments",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleAssignmentSchedule.Read.Directory",
"Description": "Read all active role assignments for your company's directory",
"FullDescription": "Allows the app to read the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all active role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleAssignmentSchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all active role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the active role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing active directory role membership, and reading directory role templates, directory roles and active memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleDefinitions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleDefinitions",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleDefinitions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read all directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read all directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
- },
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests",
+ "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RoleEligibilitySchedule.Read.Directory",
"Description": "Read all eligible role assignments for your company's directory",
"FullDescription": "Allows the app to read the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes reading directory role templates, and directory roles.",
- "IsAdmin": true
- },
- {
- "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
- "Description": "Read, update, and delete all eligible role assignments for your company's directory",
- "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleEligibilitySchedule.ReadWrite.Directory",
+ "Description": "Read, update, and delete all eligible role assignments for your company's directory",
+ "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-transitiveroleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Directory",
"Description": "Read and write all directory RBAC settings",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}",
"OutputType": "IMicrosoftGraphRbacApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps",
"OutputType": "IMicrosoftGraphRbacApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplicationmultiple-list-resourcenamespaces?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-transitiveroleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement",
"OutputType": "IMicrosoftGraphRbacApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagement"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagement",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplicationmultiple-list-resourcenamespaces?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write all entitlement management resources",
- "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write all entitlement management resources",
+ "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write all entitlement management resources",
- "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write all entitlement management resources",
+ "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals",
"OutputType": "IMicrosoftGraphApproval",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approvalstep-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps",
"OutputType": "IMicrosoftGraphApprovalStep",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-list-steps?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStepCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStepCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "EntitlementManagement.Read.All",
"Description": "Read all entitlement management resources",
"FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write all entitlement management resources",
- "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write all entitlement management resources",
+ "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "DeviceManagementRBAC.Read.All",
- "Description": "Read Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Directory",
+ "Description": "Read directory RBAC settings",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "EntitlementManagement.ReadWrite.All",
"Description": "Read and write all entitlement management resources",
"FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading Cloud PC role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Directory",
- "Description": "Read directory RBAC settings",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, on your behalf. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, on your behalf. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.Read.All",
+ "Description": "Read Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.Read.All",
- "Description": "Read Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.Read.All",
+ "Description": "Read Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions/$count",
"Module": "Beta.Identity.Governance",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "EntitlementManagement.Read.All",
+ "Description": "Read all entitlement management resources",
+ "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.Read.All",
- "Description": "Read Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "EntitlementManagement.ReadWrite.All",
+ "Description": "Read and write entitlement management resources",
+ "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "DeviceManagementRBAC.ReadWrite.All",
- "Description": "Read and write Microsoft Intune RBAC settings",
- "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.ReadWrite.All",
+ "Description": "Read and write Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.Read.All",
- "Description": "Read all entitlement management resources",
- "FullDescription": "Allows the app to read access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "DeviceManagementRBAC.Read.All",
+ "Description": "Read Microsoft Intune RBAC settings",
+ "FullDescription": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "EntitlementManagement.ReadWrite.All",
- "Description": "Read and write entitlement management resources",
- "FullDescription": "Allows the app to request access to and management of access packages and related entitlement management resources that you have access to.",
- "IsAdmin": true
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for all RBAC providers, on your behalf. This includes reading role definitions and role assignments.",
- "IsAdmin": true
+ "Name": "RoleManagement.ReadWrite.Directory",
+ "Description": "Read and write all directory RBAC settings",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.CloudPC",
- "Description": "Read Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.CloudPC",
+ "Description": "Read and write all Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.Directory",
"Description": "Read all directory RBAC settings",
"FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
- },
- {
- "Name": "RoleManagement.ReadWrite.CloudPC",
- "Description": "Read and write all Cloud PC RBAC settings",
- "FullDescription": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Directory",
- "Description": "Read and write all directory RBAC settings",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.CloudPC",
+ "Description": "Read Cloud PC RBAC settings",
+ "FullDescription": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedules?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityscheduleinstances?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityschedulerequests?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule",
"OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-transitiveroleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/$count",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.Identity.Governance",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange",
"OutputType": "IMicrosoftGraphUnifiedRbacApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchange"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchange",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}",
+ "OutputType": "IMicrosoftGraphCustomAppScope",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Exchange",
"Description": "Read Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Exchange",
"Description": "Read and write Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAppScope",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customappscope-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/customAppScopes",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/customAppScopes",
+ "OutputType": "IMicrosoftGraphCustomAppScope",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Exchange",
"Description": "Read Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Exchange",
"Description": "Read and write Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCustomAppScope",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacapplication-list-customappscopes?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/customAppScopes/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/customAppScopes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
- },
{
"Name": "RoleManagement.Read.Exchange",
"Description": "Read Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RoleManagement.ReadWrite.Exchange",
"Description": "Read and write Exchange Online RBAC configuration",
"FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchangeCustomAppScopeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeCustomAppScopeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourceaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceAction",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedrbacresourcenamespace-list-resourceactions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext",
"OutputType": "IMicrosoftGraphAuthenticationContextClassReference",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionAuthenticationContext"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionAuthenticationContext",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope",
"OutputType": "IMicrosoftGraphUnifiedRbacResourceScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/roleAssignments",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleAssignments",
+ "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "RoleManagement.Read.All",
"Description": "Read role management data for all RBAC providers",
"FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/roleDefinitions",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleDefinitions",
+ "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0"
},
{
- "Uri": "/roleManagement/exchange/roleDefinitions/$count",
"Module": "Beta.DeviceManagement.Enrollment",
+ "Uri": "/roleManagement/exchange/roleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "CloudPC.Read.All",
- "Description": "Read Cloud PCs",
- "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.Exchange",
+ "Description": "Read Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "CloudPC.ReadWrite.All",
- "Description": "Read and write Cloud PCs",
- "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.ReadWrite.Exchange",
+ "Description": "Read and write Exchange Online RBAC configuration",
+ "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "RoleManagement.Read.All",
+ "Description": "Read role management data for all RBAC providers",
+ "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.All",
- "Description": "Read role management data for all RBAC providers",
- "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.Read.Exchange",
- "Description": "Read Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read the role-based access control (RBAC) configuration for your organization's Exchange Online service, without a signed-in user. This includes reading Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.ReadWrite.All",
+ "Description": "Read and write Cloud PCs",
+ "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "RoleManagement.ReadWrite.Exchange",
- "Description": "Read and write Exchange Online RBAC configuration",
- "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your organization's Exchange Online service, without a signed-in user. This includes reading, creating, updating, and deleting Exchange management role definitions, role groups, role group membership, role assignments, management scopes, and role assignment policies.",
- "IsAdmin": false
+ "Name": "CloudPC.Read.All",
+ "Description": "Read Cloud PCs",
+ "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments",
"OutputType": "IMicrosoftGraphUnifiedRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope",
"OutputType": "IMicrosoftGraphAppScope",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/$count",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentDirectoryScope"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentDirectoryScope",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentPrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentPrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"Module": "Beta.DeviceManagement.Enrollment",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition",
"OutputType": "IMicrosoftGraphUnifiedRoleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/schemaExtensions/{schemaExtension-id}",
"Module": "Beta.SchemaExtensions",
- "Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
+ "Uri": "/schemaExtensions/{schemaExtension-id}",
+ "OutputType": "IMicrosoftGraphSchemaExtension",
+ "ApiVersion": "beta",
+ "Permissions": [
{
"Name": "User.Read",
"Description": "Sign you in and read your profile",
"FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSchemaExtension",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSchemaExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaSchemaExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-1.0"
},
{
- "Uri": "/schemaExtensions",
"Module": "Beta.SchemaExtensions",
+ "Uri": "/schemaExtensions",
+ "OutputType": "IMicrosoftGraphSchemaExtension",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "User.Read",
"Description": "Sign you in and read your profile",
"FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSchemaExtension",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSchemaExtension"
+ "Method": "GET",
+ "Command": "Get-MgBetaSchemaExtension",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-1.0"
},
{
- "Uri": "/schemaExtensions/$count",
"Module": "Beta.SchemaExtensions",
+ "Uri": "/schemaExtensions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "User.Read",
"Description": "Sign you in and read your profile",
"FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSchemaExtensionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSchemaExtensionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/search/acronyms/{acronym-id}",
"Module": "Beta.Search",
+ "Uri": "/search/acronyms/{acronym-id}",
+ "OutputType": "IMicrosoftGraphSearchAcronym",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchAcronym",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSearchAcronym"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchAcronym",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-acronym-get?view=graph-rest-1.0"
},
{
- "Uri": "/search/acronyms",
"Module": "Beta.Search",
+ "Uri": "/search/acronyms",
+ "OutputType": "IMicrosoftGraphSearchAcronym",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchAcronym",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSearchAcronym"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchAcronym",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-searchentity-list-acronyms?view=graph-rest-1.0"
},
{
- "Uri": "/search/acronyms/$count",
"Module": "Beta.Search",
+ "Uri": "/search/acronyms/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSearchAcronymCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchAcronymCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/search/bookmarks/{bookmark-id}",
"Module": "Beta.Search",
+ "Uri": "/search/bookmarks/{bookmark-id}",
+ "OutputType": "IMicrosoftGraphSearchBookmark",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchBookmark",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSearchBookmark"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchBookmark",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-bookmark-get?view=graph-rest-1.0"
},
{
- "Uri": "/search/bookmarks",
"Module": "Beta.Search",
+ "Uri": "/search/bookmarks",
+ "OutputType": "IMicrosoftGraphSearchBookmark",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchBookmark",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSearchBookmark"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchBookmark",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-searchentity-list-bookmarks?view=graph-rest-1.0"
},
{
- "Uri": "/search/bookmarks/$count",
"Module": "Beta.Search",
+ "Uri": "/search/bookmarks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSearchBookmarkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchBookmarkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/search",
"Module": "Beta.Search",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/search",
"OutputType": "IMicrosoftGraphSearchEntity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSearchEntity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchEntity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/search/qnas/{qna-id}",
"Module": "Beta.Search",
+ "Uri": "/search/qnas/{qna-id}",
+ "OutputType": "IMicrosoftGraphSearchQna",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchQna",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSearchQna"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchQna",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-qna-get?view=graph-rest-1.0"
},
{
- "Uri": "/search/qnas",
"Module": "Beta.Search",
+ "Uri": "/search/qnas",
+ "OutputType": "IMicrosoftGraphSearchQna",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSearchQna",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSearchQna"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchQna",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-searchentity-list-qnas?view=graph-rest-1.0"
},
{
- "Uri": "/search/qnas/$count",
"Module": "Beta.Search",
+ "Uri": "/search/qnas/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SearchConfiguration.Read.All",
"Description": "Read your organization's search configuration",
"FullDescription": "Allows the app to read search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SearchConfiguration.ReadWrite.All",
"Description": "Read and write your organization's search configuration",
"FullDescription": "Allows the app to read and write search configurations, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSearchQnaCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSearchQnaCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/securityActions/{securityAction-id}",
"Module": "Beta.Security",
+ "Uri": "/security/securityActions/{securityAction-id}",
+ "OutputType": "IMicrosoftGraphSecurityAction",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityActions.Read.All",
"Description": "Read your organization's security actions",
"FullDescription": "Allows the app to read security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityActions.ReadWrite.All",
"Description": "Read and update your organization's security actions",
"FullDescription": "Allows the app to read or update security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAction",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityaction-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/securityActions",
"Module": "Beta.Security",
+ "Uri": "/security/securityActions",
+ "OutputType": "IMicrosoftGraphSecurityAction",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityActions.Read.All",
"Description": "Read your organization's security actions",
"FullDescription": "Allows the app to read security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityActions.ReadWrite.All",
"Description": "Read and update your organization's security actions",
"FullDescription": "Allows the app to read or update security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAction",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAction"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAction",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityactions-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/securityActions/$count",
"Module": "Beta.Security",
+ "Uri": "/security/securityActions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityActions.Read.All",
"Description": "Read your organization's security actions",
"FullDescription": "Allows the app to read security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityActions.ReadWrite.All",
"Description": "Read and update your organization's security actions",
"FullDescription": "Allows the app to read or update security actions, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityActionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityActionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/alerts/{alert-id}",
"Module": "Beta.Security",
+ "Uri": "/security/alerts/{alert-id}",
+ "OutputType": "IMicrosoftGraphAlert",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAlert",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlert",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/alert-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/alerts",
"Module": "Beta.Security",
+ "Uri": "/security/alerts",
+ "OutputType": "IMicrosoftGraphAlert",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAlert",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlert",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/alert-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/alerts/$count",
"Module": "Beta.Security",
+ "Uri": "/security/alerts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAlertCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlertCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/alerts_v2/{alert-id}",
"Module": "Beta.Security",
+ "Uri": "/security/alerts_v2/{alert-id}",
+ "OutputType": "IMicrosoftGraphSecurityAlert",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAlert.Read.All",
"Description": "Read all security alerts",
"FullDescription": "Allows the app to read all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAlert.ReadWrite.All",
"Description": "Read and write to all security alerts",
"FullDescription": "Allows the app to read and write to all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAlert",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAlertV2"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlertV2",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-alert-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/alerts_v2",
"Module": "Beta.Security",
+ "Uri": "/security/alerts_v2",
+ "OutputType": "IMicrosoftGraphSecurityAlert",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAlert.Read.All",
"Description": "Read all security alerts",
"FullDescription": "Allows the app to read all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAlert.ReadWrite.All",
"Description": "Read and write to all security alerts",
"FullDescription": "Allows the app to read and write to all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAlert",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAlertV2"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlertV2",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-list-alerts_v2?view=graph-rest-1.0"
},
{
- "Uri": "/security/alerts_v2/$count",
"Module": "Beta.Security",
+ "Uri": "/security/alerts_v2/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAlert.Read.All",
"Description": "Read all security alerts",
"FullDescription": "Allows the app to read all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAlert.ReadWrite.All",
"Description": "Read and write to all security alerts",
"FullDescription": "Allows the app to read and write to all security alerts, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get1"
],
- "Command": "Get-MgBetaSecurityAlertV2Count"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAlertV2Count",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation",
"OutputType": "IMicrosoftGraphAttackSimulationRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/simulations",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulations",
"OutputType": "IMicrosoftGraphSimulation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-simulations?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}",
"OutputType": "IMicrosoftGraphSimulationAutomation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/simulationautomation-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/simulationAutomations",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations",
"OutputType": "IMicrosoftGraphSimulationAutomation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-simulationautomations?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/simulationAutomations/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}",
"OutputType": "IMicrosoftGraphSimulationAutomationRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs",
"OutputType": "IMicrosoftGraphSimulationAutomationRun",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/simulationautomation-list-runs?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationAutomationRunCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationAutomationRunCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/simulations/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/simulations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}",
"OutputType": "IMicrosoftGraphEndUserNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/endUserNotifications",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications",
"OutputType": "IMicrosoftGraphEndUserNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-endusernotifications?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/endUserNotifications/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}",
"OutputType": "IMicrosoftGraphEndUserNotificationDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details",
"OutputType": "IMicrosoftGraphEndUserNotificationDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/landingPages/{landingPage-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages/{landingPage-id}",
"OutputType": "IMicrosoftGraphLandingPage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/landingPages",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages",
"OutputType": "IMicrosoftGraphLandingPage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-landingpage?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/landingPages/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}",
"OutputType": "IMicrosoftGraphLandingPageDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details",
"OutputType": "IMicrosoftGraphLandingPageDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/loginPages/{loginPage-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/loginPages/{loginPage-id}",
"OutputType": "IMicrosoftGraphLoginPage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLoginPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLoginPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/loginPages",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/loginPages",
"OutputType": "IMicrosoftGraphLoginPage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLoginPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLoginPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-loginpage?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/loginPages/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/loginPages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationLoginPageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationLoginPageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}",
"OutputType": "IMicrosoftGraphAttackSimulationOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/operations",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/operations",
"OutputType": "IMicrosoftGraphAttackSimulationOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/operations/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/payloads/{payload-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/payloads/{payload-id}",
"OutputType": "IMicrosoftGraphPayload",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityAttackSimulationPayload"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationPayload",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/payloads",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/payloads",
"OutputType": "IMicrosoftGraphPayload",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationPayload"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationPayload",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-payloads?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/payloads/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/payloads/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationPayloadCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationPayloadCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings/{training-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings/{training-id}",
"OutputType": "IMicrosoftGraphTraining",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTraining"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTraining",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings",
"OutputType": "IMicrosoftGraphTraining",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTraining"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTraining",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-trainings?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}",
"OutputType": "IMicrosoftGraphTrainingCampaign",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trainingcampaign-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/trainingCampaigns",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainingCampaigns",
"OutputType": "IMicrosoftGraphTrainingCampaign",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attacksimulationroot-list-trainingcampaigns?view=graph-rest-1.0"
},
{
- "Uri": "/security/attackSimulation/trainingCampaigns/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainingCampaigns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaignCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaignCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}",
"OutputType": "IMicrosoftGraphTrainingLanguageDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails",
"OutputType": "IMicrosoftGraphTrainingLanguageDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "AttackSimulation.Read.All",
- "Description": "Read attack simulation data of an organization",
- "FullDescription": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/auditLog",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/auditLog",
"OutputType": "IMicrosoftGraphSecurityAuditCoreRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAuditLog"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/auditLog/queries/{auditLogQuery-id}",
"Module": "Beta.Security",
+ "Uri": "/security/auditLog/queries/{auditLogQuery-id}",
+ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AuditLogsQuery-CRM.Read.All",
- "Description": "Read audit logs data from Dynamics CRM workload",
- "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
- "IsAdmin": false
- },
- {
- "Name": "AuditLogsQuery-Endpoint.Read.All",
- "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
- "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
- "IsAdmin": false
- },
{
"Name": "AuditLogsQuery-Entra.Read.All",
"Description": "Read audit logs data from Entra (Azure AD) workload",
"FullDescription": "Allows the app to read and query audit logs from Entra (Azure AD) workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AuditLogsQuery-Exchange.Read.All",
- "Description": "Read audit logs data from Exchange workload",
- "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery.Read.All",
+ "Description": "Read audit logs data from all services",
+ "FullDescription": "Allows the app to read and query audit logs from all services.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-SharePoint.Read.All",
+ "Description": "Read audit logs data from SharePoint workload",
+ "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "AuditLogsQuery-OneDrive.Read.All",
"Description": "Read audit logs data from OneDrive workload",
"FullDescription": "Allows the app to read and query audit logs from OneDrive workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery-SharePoint.Read.All",
- "Description": "Read audit logs data from SharePoint workload",
- "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Exchange.Read.All",
+ "Description": "Read audit logs data from Exchange workload",
+ "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery.Read.All",
- "Description": "Read audit logs data from all services",
- "FullDescription": "Allows the app to read and query audit logs from all services.",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Endpoint.Read.All",
+ "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
+ "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-CRM.Read.All",
+ "Description": "Read audit logs data from Dynamics CRM workload",
+ "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAuditLogQuery",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAuditLogQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-auditlogquery-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/auditLog/queries",
"Module": "Beta.Security",
+ "Uri": "/security/auditLog/queries",
+ "OutputType": "IMicrosoftGraphSecurityAuditLogQuery",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AuditLogsQuery-CRM.Read.All",
- "Description": "Read audit logs data from Dynamics CRM workload",
- "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
- "IsAdmin": false
- },
- {
- "Name": "AuditLogsQuery-Endpoint.Read.All",
- "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
- "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
- "IsAdmin": false
- },
{
"Name": "AuditLogsQuery-Entra.Read.All",
"Description": "Read audit logs data from Entra (Azure AD) workload",
"FullDescription": "Allows the app to read and query audit logs from Entra (Azure AD) workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AuditLogsQuery-Exchange.Read.All",
- "Description": "Read audit logs data from Exchange workload",
- "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery.Read.All",
+ "Description": "Read audit logs data from all services",
+ "FullDescription": "Allows the app to read and query audit logs from all services.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-SharePoint.Read.All",
+ "Description": "Read audit logs data from SharePoint workload",
+ "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "AuditLogsQuery-OneDrive.Read.All",
"Description": "Read audit logs data from OneDrive workload",
"FullDescription": "Allows the app to read and query audit logs from OneDrive workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery-SharePoint.Read.All",
- "Description": "Read audit logs data from SharePoint workload",
- "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Exchange.Read.All",
+ "Description": "Read audit logs data from Exchange workload",
+ "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery.Read.All",
- "Description": "Read audit logs data from all services",
- "FullDescription": "Allows the app to read and query audit logs from all services.",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Endpoint.Read.All",
+ "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
+ "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-CRM.Read.All",
+ "Description": "Read audit logs data from Dynamics CRM workload",
+ "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAuditLogQuery",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAuditLogQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-auditcoreroot-list-auditlogqueries?view=graph-rest-1.0"
},
{
- "Uri": "/security/auditLog/queries/$count",
"Module": "Beta.Security",
+ "Uri": "/security/auditLog/queries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AuditLogsQuery-CRM.Read.All",
- "Description": "Read audit logs data from Dynamics CRM workload",
- "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
- "IsAdmin": false
- },
- {
- "Name": "AuditLogsQuery-Endpoint.Read.All",
- "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
- "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
- "IsAdmin": false
- },
{
"Name": "AuditLogsQuery-Entra.Read.All",
"Description": "Read audit logs data from Entra (Azure AD) workload",
"FullDescription": "Allows the app to read and query audit logs from Entra (Azure AD) workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AuditLogsQuery-Exchange.Read.All",
- "Description": "Read audit logs data from Exchange workload",
- "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery.Read.All",
+ "Description": "Read audit logs data from all services",
+ "FullDescription": "Allows the app to read and query audit logs from all services.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-SharePoint.Read.All",
+ "Description": "Read audit logs data from SharePoint workload",
+ "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "AuditLogsQuery-OneDrive.Read.All",
"Description": "Read audit logs data from OneDrive workload",
"FullDescription": "Allows the app to read and query audit logs from OneDrive workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery-SharePoint.Read.All",
- "Description": "Read audit logs data from SharePoint workload",
- "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Exchange.Read.All",
+ "Description": "Read audit logs data from Exchange workload",
+ "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery.Read.All",
- "Description": "Read audit logs data from all services",
- "FullDescription": "Allows the app to read and query audit logs from all services.",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Endpoint.Read.All",
+ "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
+ "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-CRM.Read.All",
+ "Description": "Read audit logs data from Dynamics CRM workload",
+ "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityAuditLogQueryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQueryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}",
"OutputType": "IMicrosoftGraphSecurityAuditLogRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAuditLogQueryRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQueryRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records",
"Module": "Beta.Security",
+ "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records",
+ "OutputType": "IMicrosoftGraphSecurityAuditLogRecord",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AuditLogsQuery-CRM.Read.All",
- "Description": "Read audit logs data from Dynamics CRM workload",
- "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
- "IsAdmin": false
- },
- {
- "Name": "AuditLogsQuery-Endpoint.Read.All",
- "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
- "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
- "IsAdmin": false
- },
{
"Name": "AuditLogsQuery-Entra.Read.All",
"Description": "Read audit logs data from Entra (Azure AD) workload",
"FullDescription": "Allows the app to read and query audit logs from Entra (Azure AD) workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AuditLogsQuery-Exchange.Read.All",
- "Description": "Read audit logs data from Exchange workload",
- "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery.Read.All",
+ "Description": "Read audit logs data from all services",
+ "FullDescription": "Allows the app to read and query audit logs from all services.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-SharePoint.Read.All",
+ "Description": "Read audit logs data from SharePoint workload",
+ "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "AuditLogsQuery-OneDrive.Read.All",
"Description": "Read audit logs data from OneDrive workload",
"FullDescription": "Allows the app to read and query audit logs from OneDrive workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery-SharePoint.Read.All",
- "Description": "Read audit logs data from SharePoint workload",
- "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Exchange.Read.All",
+ "Description": "Read audit logs data from Exchange workload",
+ "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery.Read.All",
- "Description": "Read audit logs data from all services",
- "FullDescription": "Allows the app to read and query audit logs from all services.",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Endpoint.Read.All",
+ "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
+ "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-CRM.Read.All",
+ "Description": "Read audit logs data from Dynamics CRM workload",
+ "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAuditLogRecord",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityAuditLogQueryRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQueryRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-auditlogquery-list-records?view=graph-rest-1.0"
},
{
- "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/$count",
"Module": "Beta.Security",
+ "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "AuditLogsQuery-CRM.Read.All",
- "Description": "Read audit logs data from Dynamics CRM workload",
- "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
- "IsAdmin": false
- },
- {
- "Name": "AuditLogsQuery-Endpoint.Read.All",
- "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
- "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
- "IsAdmin": false
- },
{
"Name": "AuditLogsQuery-Entra.Read.All",
"Description": "Read audit logs data from Entra (Azure AD) workload",
"FullDescription": "Allows the app to read and query audit logs from Entra (Azure AD) workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "AuditLogsQuery-Exchange.Read.All",
- "Description": "Read audit logs data from Exchange workload",
- "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery.Read.All",
+ "Description": "Read audit logs data from all services",
+ "FullDescription": "Allows the app to read and query audit logs from all services.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-SharePoint.Read.All",
+ "Description": "Read audit logs data from SharePoint workload",
+ "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "AuditLogsQuery-OneDrive.Read.All",
"Description": "Read audit logs data from OneDrive workload",
"FullDescription": "Allows the app to read and query audit logs from OneDrive workload, without a signed-in user",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery-SharePoint.Read.All",
- "Description": "Read audit logs data from SharePoint workload",
- "FullDescription": "Allows the app to read and query audit logs from SharePoint workload, without a signed-in user",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Exchange.Read.All",
+ "Description": "Read audit logs data from Exchange workload",
+ "FullDescription": "Allows the app to read and query audit logs from Exchange workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "AuditLogsQuery.Read.All",
- "Description": "Read audit logs data from all services",
- "FullDescription": "Allows the app to read and query audit logs from all services.",
- "IsAdmin": false
+ "Name": "AuditLogsQuery-Endpoint.Read.All",
+ "Description": "Read audit logs data from Endpoint Data Loss Prevention workload",
+ "FullDescription": "Allows the app to read and query audit logs from Endpoint Data Loss Prevention workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "AuditLogsQuery-CRM.Read.All",
+ "Description": "Read audit logs data from Dynamics CRM workload",
+ "FullDescription": "Allows the app to read and query audit logs from Dynamics CRM workload, without a signed-in user",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityAuditLogQueryRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityAuditLogQueryRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases",
"OutputType": "IMicrosoftGraphSecurityCasesRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityCase"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCase"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCase"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCase",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-casesroot-list-ediscoverycases?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-custodians?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianLastIndexOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianLastIndexOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-list-lastindexoperation?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}",
"OutputType": "IMicrosoftGraphSecuritySiteSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources",
+ "OutputType": "IMicrosoftGraphSecuritySiteSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecuritySiteSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-list-sitesources?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}",
"OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources",
+ "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-list-unifiedgroupsources?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}",
"OutputType": "IMicrosoftGraphSecurityUserSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources",
+ "OutputType": "IMicrosoftGraphSecurityUserSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityUserSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-list-usersources?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-legalholds?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}",
"OutputType": "IMicrosoftGraphSecuritySiteSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources",
"OutputType": "IMicrosoftGraphSecuritySiteSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}/site",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}/site",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}",
"OutputType": "IMicrosoftGraphSecurityUserSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources",
+ "OutputType": "IMicrosoftGraphSecurityUserSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityUserSource",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}",
"OutputType": "IMicrosoftGraphSecurityCaseOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-caseoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations",
"Module": "Beta.Security",
- "Permissions": [
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations",
+ "OutputType": "IMicrosoftGraphSecurityCaseOperation",
+ "ApiVersion": "beta",
+ "Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityCaseOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-reviewsets?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryfile-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-list-files?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-list-files?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/custodian",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/custodian",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-list-files?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/{ediscoveryReviewTag-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/{ediscoveryReviewTag-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-list-queries?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-searches?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}",
"OutputType": "IMicrosoftGraphSecurityDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources",
"OutputType": "IMicrosoftGraphSecurityDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-list-additionalsources?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}",
"OutputType": "IMicrosoftGraphSecurityDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources",
"OutputType": "IMicrosoftGraphSecurityDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-list-custodiansources?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/lastEstimateStatisticsOperation",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/lastEstimateStatisticsOperation",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-list-lastestimatestatisticsoperation?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "eDiscovery.ReadWrite.All",
- "Description": "Read and write all eDiscovery objects",
- "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewtag-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags",
+ "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-list-tags?view=graph-rest-1.0"
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/$count",
"Module": "Beta.Security",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "eDiscovery.Read.All",
"Description": "Read all eDiscovery objects",
"FullDescription": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "eDiscovery.ReadWrite.All",
"Description": "Read and write all eDiscovery objects",
"FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent",
"OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagParent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagParent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}",
"OutputType": "IMicrosoftGraphCloudAppSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCloudAppSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCloudAppSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cloudAppSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cloudAppSecurityProfiles",
"OutputType": "IMicrosoftGraphCloudAppSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCloudAppSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCloudAppSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/cloudAppSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/cloudAppSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityCloudAppSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCloudAppSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/collaboration",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/collaboration",
"OutputType": "IMicrosoftGraphSecurityCollaborationRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityCollaboration"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCollaboration",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}",
"Module": "Beta.Security",
+ "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}",
+ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAnalyzedMessage.Read.All",
"Description": "Read metadata and detection details for all emails in your organization",
"FullDescription": "Read email metadata and security detection details, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAnalyzedMessage.ReadWrite.All",
"Description": "Read metadata, detection details, and execute remediation actions on all emails in your organization",
"FullDescription": "Read email metadata and security detection details, and execute remediation actions like deleting an email, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-analyzedemail-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/collaboration/analyzedEmails",
"Module": "Beta.Security",
+ "Uri": "/security/collaboration/analyzedEmails",
+ "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAnalyzedMessage.Read.All",
"Description": "Read metadata and detection details for all emails in your organization",
"FullDescription": "Read email metadata and security detection details, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAnalyzedMessage.ReadWrite.All",
"Description": "Read metadata, detection details, and execute remediation actions on all emails in your organization",
"FullDescription": "Read email metadata and security detection details, and execute remediation actions like deleting an email, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/collaboration/analyzedEmails/$count",
"Module": "Beta.Security",
+ "Uri": "/security/collaboration/analyzedEmails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityAnalyzedMessage.Read.All",
"Description": "Read metadata and detection details for all emails in your organization",
"FullDescription": "Read email metadata and security detection details, without a signed-in user. ",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityAnalyzedMessage.ReadWrite.All",
"Description": "Read metadata, detection details, and execute remediation actions on all emails in your organization",
"FullDescription": "Read email metadata and security detection details, and execute remediation actions like deleting an email, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}",
"OutputType": "IMicrosoftGraphDomainSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityDomainSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityDomainSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/domainSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/domainSecurityProfiles",
"OutputType": "IMicrosoftGraphDomainSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityDomainSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityDomainSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/domainSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/domainSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityDomainSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityDomainSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}",
"OutputType": "IMicrosoftGraphFileSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityFileSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityFileSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/fileSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/fileSecurityProfiles",
"OutputType": "IMicrosoftGraphFileSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityFileSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityFileSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/fileSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/fileSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityFileSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityFileSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}",
"OutputType": "IMicrosoftGraphHostSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityHostSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityHostSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/hostSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/hostSecurityProfiles",
"OutputType": "IMicrosoftGraphHostSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityHostSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityHostSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/hostSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/hostSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityHostSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityHostSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/identities",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/identities",
"OutputType": "IMicrosoftGraphSecurityIdentityContainer",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityIdentity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIdentity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/identities/healthIssues/{healthIssue-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/identities/healthIssues/{healthIssue-id}",
"OutputType": "IMicrosoftGraphSecurityHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIdentityHealthIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIdentityHealthIssue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-healthissue-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/identities/healthIssues",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/identities/healthIssues",
"OutputType": "IMicrosoftGraphSecurityHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityIdentityHealthIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIdentityHealthIssue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-identitycontainer-list-healthissues?view=graph-rest-1.0"
},
{
- "Uri": "/security/identities/healthIssues/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/identities/healthIssues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityIdentityHealthIssueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIdentityHealthIssueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/incidents/{incident-id}",
"Module": "Beta.Security",
+ "Uri": "/security/incidents/{incident-id}",
+ "OutputType": "IMicrosoftGraphSecurityIncident",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityIncident.Read.All",
"Description": "Read all security incidents",
"FullDescription": "Allows the app to read all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityIncident.ReadWrite.All",
"Description": "Read and write to all security incidents",
"FullDescription": "Allows the app to read and write to all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityIncident",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIncident"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncident",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-incident-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/incidents",
"Module": "Beta.Security",
+ "Uri": "/security/incidents",
+ "OutputType": "IMicrosoftGraphSecurityIncident",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityIncident.Read.All",
"Description": "Read all security incidents",
"FullDescription": "Allows the app to read all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityIncident.ReadWrite.All",
"Description": "Read and write to all security incidents",
"FullDescription": "Allows the app to read and write to all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityIncident",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityIncident"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncident",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-list-incidents?view=graph-rest-1.0"
},
{
- "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}",
"OutputType": "IMicrosoftGraphSecurityAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIncidentAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncidentAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/incidents/{incident-id}/alerts",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/incidents/{incident-id}/alerts",
"OutputType": "IMicrosoftGraphSecurityAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityIncidentAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncidentAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIncidentAlertCommentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncidentAlertCommentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/incidents/{incident-id}/alerts/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/incidents/{incident-id}/alerts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIncidentAlertCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncidentAlertCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/incidents/$count",
"Module": "Beta.Security",
+ "Uri": "/security/incidents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityIncident.Read.All",
"Description": "Read all security incidents",
"FullDescription": "Allows the app to read all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityIncident.ReadWrite.All",
"Description": "Read and write to all security incidents",
"FullDescription": "Allows the app to read and write to all security incidents, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityIncidentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIncidentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/informationProtection",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/informationProtection",
"OutputType": "IMicrosoftGraphSecurityInformationProtection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityInformationProtection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/informationProtection/labelPolicySettings",
"Module": "Beta.Security",
+ "Uri": "/security/informationProtection/labelPolicySettings",
+ "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityInformationProtectionLabelPolicySetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtectionLabelPolicySetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-informationprotectionpolicysetting-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}",
"Module": "Beta.Security",
+ "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}",
+ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecuritySensitivityLabel",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/informationProtection/sensitivityLabels",
"Module": "Beta.Security",
+ "Uri": "/security/informationProtection/sensitivityLabels",
+ "OutputType": "IMicrosoftGraphSecuritySensitivityLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecuritySensitivityLabel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-informationprotection-list-sensitivitylabels?view=graph-rest-1.0"
},
{
- "Uri": "/security/informationProtection/sensitivityLabels/$count",
"Module": "Beta.Security",
+ "Uri": "/security/informationProtection/sensitivityLabels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "InformationProtectionPolicy.Read",
"Description": "Read user sensitivity labels and label policies.",
"FullDescription": "Allows an app to read information protection sensitivity labels and label policy settings, on behalf of the signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "InformationProtectionPolicy.Read.All",
"Description": "Read all published labels and label policies for an organization.",
"FullDescription": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent",
"OutputType": "IMicrosoftGraphSecuritySensitivityLabel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelParent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelParent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}",
"OutputType": "IMicrosoftGraphIPSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityIPSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIPSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/ipSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/ipSecurityProfiles",
"OutputType": "IMicrosoftGraphIPSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityIPSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIPSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/ipSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/ipSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityIPSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityIPSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels",
"OutputType": "IMicrosoftGraphSecurityLabelsRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/authorities/{authorityTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/authorities/{authorityTemplate-id}",
"OutputType": "IMicrosoftGraphSecurityAuthorityTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelAuthority"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelAuthority",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-authoritytemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/authorities",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/authorities",
"OutputType": "IMicrosoftGraphSecurityAuthorityTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelAuthority"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelAuthority",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-authorities?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/authorities/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/authorities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelAuthorityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelAuthorityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/categories/{categoryTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories/{categoryTemplate-id}",
"OutputType": "IMicrosoftGraphSecurityCategoryTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-categorytemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/categories",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories",
"OutputType": "IMicrosoftGraphSecurityCategoryTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelCategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-categories?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/categories/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelCategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}",
"OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelCategorySubcategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategorySubcategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories",
"OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelCategorySubcategory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategorySubcategory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelCategorySubcategoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCategorySubcategoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/citations/{citationTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/citations/{citationTemplate-id}",
"OutputType": "IMicrosoftGraphSecurityCitationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelCitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCitation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-citationtemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/citations",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/citations",
"OutputType": "IMicrosoftGraphSecurityCitationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelCitation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCitation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-citations?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/citations/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/citations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelCitationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelCitationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/departments/{departmentTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/departments/{departmentTemplate-id}",
"OutputType": "IMicrosoftGraphSecurityDepartmentTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelDepartment"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelDepartment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-departmenttemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/departments",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/departments",
"OutputType": "IMicrosoftGraphSecurityDepartmentTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelDepartment"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelDepartment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-departments?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/departments/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/departments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelDepartmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelDepartmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}",
"OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelFilePlanReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelFilePlanReference",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-fileplanreferencetemplate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/filePlanReferences",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/filePlanReferences",
"OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelFilePlanReference"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelFilePlanReference",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-fileplanreferences?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/filePlanReferences/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/filePlanReferences/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelFilePlanReferenceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelFilePlanReferenceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType",
"OutputType": "IMicrosoftGraphSecurityRetentionEventType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionEventType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionEventType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}",
"Module": "Beta.Security",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}",
+ "OutputType": "IMicrosoftGraphSecurityRetentionLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels, and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels, and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionLabel",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels",
"Module": "Beta.Security",
+ "Uri": "/security/labels/retentionLabels",
+ "OutputType": "IMicrosoftGraphSecurityRetentionLabel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels, and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels, and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionLabel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabel"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-labelsroot-list-retentionlabel?view=graph-rest-1.0"
},
{
- "Uri": "/security/labels/retentionLabels/$count",
"Module": "Beta.Security",
+ "Uri": "/security/labels/retentionLabels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels, and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels, and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors",
"OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptor"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptor",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate",
"OutputType": "IMicrosoftGraphSecurityAuthorityTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorAuthorityTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorAuthorityTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate",
"OutputType": "IMicrosoftGraphSecurityCategoryTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCategoryTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCategoryTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate",
"OutputType": "IMicrosoftGraphSecurityCitationTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCitationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCitationTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate",
"OutputType": "IMicrosoftGraphSecurityDepartmentTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorDepartmentTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorDepartmentTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate",
"OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}",
"OutputType": "IMicrosoftGraphSecurityDispositionReviewStage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages",
"OutputType": "IMicrosoftGraphSecurityDispositionReviewStage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}",
"OutputType": "IMicrosoftGraphProviderTenantSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityProviderTenantSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityProviderTenantSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/providerTenantSettings",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/providerTenantSettings",
"OutputType": "IMicrosoftGraphProviderTenantSetting",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityProviderTenantSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityProviderTenantSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/providerTenantSettings/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/providerTenantSettings/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityProviderTenantSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityProviderTenantSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/rules",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/rules",
"OutputType": "IMicrosoftGraphSecurityRulesRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/rules/detectionRules/{detectionRule-id}",
"Module": "Beta.Security",
+ "Uri": "/security/rules/detectionRules/{detectionRule-id}",
+ "OutputType": "IMicrosoftGraphSecurityDetectionRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomDetection.Read.All",
"Description": "Read all custom detection rules",
"FullDescription": "Allows the app to read custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomDetection.ReadWrite.All",
"Description": "Read and write all custom detection rules",
"FullDescription": "Allows the app to read and write custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityDetectionRule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityRuleDetectionRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityRuleDetectionRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/rules/detectionRules",
"Module": "Beta.Security",
+ "Uri": "/security/rules/detectionRules",
+ "OutputType": "IMicrosoftGraphSecurityDetectionRule",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomDetection.Read.All",
"Description": "Read all custom detection rules",
"FullDescription": "Allows the app to read custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomDetection.ReadWrite.All",
"Description": "Read and write all custom detection rules",
"FullDescription": "Allows the app to read and write custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityDetectionRule",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityRuleDetectionRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityRuleDetectionRule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-detectionrule-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/rules/detectionRules/$count",
"Module": "Beta.Security",
+ "Uri": "/security/rules/detectionRules/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CustomDetection.Read.All",
"Description": "Read all custom detection rules",
"FullDescription": "Allows the app to read custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "CustomDetection.ReadWrite.All",
"Description": "Read and write all custom detection rules",
"FullDescription": "Allows the app to read and write custom detection rules without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityRuleDetectionRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityRuleDetectionRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/secureScores/{secureScore-id}",
"Module": "Beta.Security",
+ "Uri": "/security/secureScores/{secureScore-id}",
+ "OutputType": "IMicrosoftGraphSecureScore",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecureScore",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySecureScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScore",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/secureScores",
"Module": "Beta.Security",
+ "Uri": "/security/secureScores",
+ "OutputType": "IMicrosoftGraphSecureScore",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecureScore",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySecureScore"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScore",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securescores-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}",
"Module": "Beta.Security",
+ "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}",
+ "OutputType": "IMicrosoftGraphSecureScoreControlProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecureScoreControlProfile",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySecureScoreControlProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScoreControlProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/secureScoreControlProfiles",
"Module": "Beta.Security",
+ "Uri": "/security/secureScoreControlProfiles",
+ "OutputType": "IMicrosoftGraphSecureScoreControlProfile",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecureScoreControlProfile",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySecureScoreControlProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScoreControlProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securescorecontrolprofiles-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/secureScoreControlProfiles/$count",
"Module": "Beta.Security",
+ "Uri": "/security/secureScoreControlProfiles/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecuritySecureScoreControlProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScoreControlProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/secureScores/$count",
"Module": "Beta.Security",
+ "Uri": "/security/secureScores/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SecurityEvents.Read.All",
"Description": "Read your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SecurityEvents.ReadWrite.All",
"Description": "Read and update your organization’s security events",
"FullDescription": "Allows the app to read your organization’s security events without a signed-in user. Also allows the app to update editable properties in security events.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecuritySecureScoreCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySecureScoreCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}",
+ "OutputType": "IMicrosoftGraphSubjectRightsRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubjectRightsRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests",
+ "OutputType": "IMicrosoftGraphSubjectRightsRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubjectRightsRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequest",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
- "Variants": [
+ "ApiVersion": "beta",
+ "Permissions": [],
+ "Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/$count",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalAttachment",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalAttachment",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalAttachment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalReport"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalReport",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}",
"OutputType": "IMicrosoftGraphAuthoredNote",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes",
+ "OutputType": "IMicrosoftGraphAuthoredNote",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAuthoredNote",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestNote",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-list-notes?view=graph-rest-1.0"
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count",
"Module": "Beta.Security",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "SubjectRightsRequest.Read.All",
"Description": "Read data subject requests",
"FullDescription": "Allows the app to read subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "SubjectRightsRequest.ReadWrite.All",
"Description": "Read and write data subject requests",
"FullDescription": "Allows the app to read and write subject rights requests on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestNoteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestNoteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team",
"OutputType": "IMicrosoftGraphTeam",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecuritySubjectRightsRequestTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecuritySubjectRightsRequestTeam",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence",
"OutputType": "IMicrosoftGraphSecurityThreatIntelligence",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligence"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligence",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/articles/{article-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articles/{article-id}",
"OutputType": "IMicrosoftGraphSecurityArticle",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticle"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-article-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/articles",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articles",
"OutputType": "IMicrosoftGraphSecurityArticle",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticle"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticle",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-threatintelligence-list-articles?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/articles/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}",
"OutputType": "IMicrosoftGraphSecurityArticleIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-articleindicator-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/articleIndicators",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articleIndicators",
"OutputType": "IMicrosoftGraphSecurityArticleIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorArtifact"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorArtifact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/articleIndicators/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/articleIndicators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHost",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-list-childhostpairs?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPairCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPairCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}",
"OutputType": "IMicrosoftGraphSecurityHostComponent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hostcomponent-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostComponents",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostComponents",
"OutputType": "IMicrosoftGraphSecurityHostComponent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostComponents/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostComponents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}",
"OutputType": "IMicrosoftGraphSecurityHostCookie",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hostcookie-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostCookies",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostCookies",
"OutputType": "IMicrosoftGraphSecurityHostCookie",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostCookies/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostCookies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hostpair-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostPairs",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPairs",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairChildHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairChildHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPairs/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPairs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairParentHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairParentHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs",
"OutputType": "IMicrosoftGraphSecurityHostPair",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-list-parenthostpairs?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPairCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPairCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-list-passivedns?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-list-passivednsreverse?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverseCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverseCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}",
"OutputType": "IMicrosoftGraphSecurityHostPort",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hostport-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostPorts",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPorts",
"OutputType": "IMicrosoftGraphSecurityHostPort",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPorts/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPorts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate",
"OutputType": "IMicrosoftGraphSecuritySslCertificate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortMostRecentSslCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortMostRecentSslCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation",
"OutputType": "IMicrosoftGraphSecurityHostReputation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostReputation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostReputation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-get-reputation?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}",
"OutputType": "IMicrosoftGraphSecurityHostSslCertificate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
@@ -132082,79213 +152074,92507 @@
"GetViaIdentity1",
"GetViaIdentity2"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hostsslcertificate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostSslCertificates",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostSslCertificates",
"OutputType": "IMicrosoftGraphSecurityHostSslCertificate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}",
"OutputType": "IMicrosoftGraphSecuritySubdomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains",
"OutputType": "IMicrosoftGraphSecuritySubdomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-host-list-subdomains?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomainCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomainCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}",
"OutputType": "IMicrosoftGraphSecurityHostTracker",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-hosttracker-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/hostTrackers",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostTrackers",
"OutputType": "IMicrosoftGraphSecurityHostTracker",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/hosts/{host-id}/whois",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/hosts/{host-id}/whois",
"OutputType": "IMicrosoftGraphSecurityWhoisRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceHostWhoi"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceHostWhoi",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-whoisrecord-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-intelligenceprofile-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/intelProfiles",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-threatintelligence-list-intelprofiles?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/intelProfiles/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-intelligenceprofile-list-indicators?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicatorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicatorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-passivednsrecord-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/passiveDnsRecords",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/passiveDnsRecords",
"OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordArtifact"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordArtifact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/passiveDnsRecords/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/passiveDnsRecords/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordParentHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordParentHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-intelligenceprofileindicator-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/intelligenceProfileIndicators",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelligenceProfileIndicators",
"OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorArtifact"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorArtifact",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}",
"OutputType": "IMicrosoftGraphSecuritySslCertificate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sslcertificate-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/sslCertificates",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates",
"OutputType": "IMicrosoftGraphSecuritySslCertificate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-threatintelligence-list-sslcertificates?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/sslCertificates/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHostCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHostCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}",
"OutputType": "IMicrosoftGraphSecuritySubdomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-subdomain-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/subdomains",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/subdomains",
"OutputType": "IMicrosoftGraphSecuritySubdomain",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/subdomains/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/subdomains/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}",
"OutputType": "IMicrosoftGraphSecurityVulnerability",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-vulnerability-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities",
"OutputType": "IMicrosoftGraphSecurityVulnerability",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}",
"OutputType": "IMicrosoftGraphSecurityArticle",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles",
"OutputType": "IMicrosoftGraphSecurityArticle",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}",
"OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-vulnerabilitycomponent-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components",
"OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-vulnerability-list-components?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIntelligence.Read.All",
- "Description": "Read all Threat Intelligence Information",
- "FullDescription": "Allows the app to read threat intellgence information, such as indicators, observations, and and articles, without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/vulnerabilities/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/vulnerabilities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}",
"OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisHistoryRecords",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisHistoryRecords",
"OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}",
"OutputType": "IMicrosoftGraphSecurityWhoisRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-whoisrecord-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/whoisRecords",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords",
"OutputType": "IMicrosoftGraphSecurityWhoisRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-threatintelligence-list-whoisrecords?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}",
"OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history",
"OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-whoisrecord-list-history?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host",
"OutputType": "IMicrosoftGraphSecurityHost",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHost"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHost",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatSubmission",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/threatSubmission",
"OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatSubmission"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}",
+ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-emailthreatsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/emailThreats",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreats",
+ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-emailthreatsubmission-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/emailThreats/$count",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreats/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}",
+ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.ReadWrite",
- "Description": "Read and write threat submissions",
- "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "Name": "ThreatSubmissionPolicy.ReadWrite.All",
+ "Description": "Read and write all threat submission policies",
+ "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite.All",
"Description": "Read and write all threat submissions",
"FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmissionPolicy.ReadWrite.All",
- "Description": "Read and write all threat submission policies",
- "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite",
+ "Description": "Read and write threat submissions",
+ "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-emailthreatsubmissionpolicy-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies",
+ "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.ReadWrite",
- "Description": "Read and write threat submissions",
- "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "Name": "ThreatSubmissionPolicy.ReadWrite.All",
+ "Description": "Read and write all threat submission policies",
+ "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite.All",
"Description": "Read and write all threat submissions",
"FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmissionPolicy.ReadWrite.All",
- "Description": "Read and write all threat submission policies",
- "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite",
+ "Description": "Read and write threat submissions",
+ "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-emailthreatsubmissionpolicy-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/$count",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
- },
- {
- "Name": "ThreatSubmission.ReadWrite",
- "Description": "Read and write threat submissions",
- "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "Name": "ThreatSubmissionPolicy.ReadWrite.All",
+ "Description": "Read and write all threat submission policies",
+ "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite.All",
"Description": "Read and write all threat submissions",
"FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmissionPolicy.ReadWrite.All",
- "Description": "Read and write all threat submission policies",
- "FullDescription": "Allows the app to read your organization's threat submission policies on your behalf. Also allows the app to create new threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite",
+ "Description": "Read and write threat submissions",
+ "FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}",
+ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-filethreatsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/fileThreats",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/fileThreats",
+ "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-filethreatsubmission-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/fileThreats/$count",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/fileThreats/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionFileThreatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionFileThreatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}",
+ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-urlthreatsubmission-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/urlThreats",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/urlThreats",
+ "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-urlthreatsubmission-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/threatSubmission/urlThreats/$count",
"Module": "Beta.Security",
+ "Uri": "/security/threatSubmission/urlThreats/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ThreatSubmission.Read",
"Description": "Read threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "ThreatSubmission.Read.All",
- "Description": "Read all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.ReadWrite.All",
+ "Description": "Read and write all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "ThreatSubmission.ReadWrite",
"Description": "Read and write threat submissions",
"FullDescription": "Allows the app to read the threat submissions and threat submission policies that you own. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "ThreatSubmission.ReadWrite.All",
- "Description": "Read and write all threat submissions",
- "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf. Also allows the app to create new threat submissions on your behalf.",
- "IsAdmin": true
+ "Name": "ThreatSubmission.Read.All",
+ "Description": "Read all threat submissions",
+ "FullDescription": "Allows the app to read your organization's threat submissions and threat submission policies on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/tiIndicators/{tiIndicator-id}",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIndicators.ReadWrite.OwnedBy",
- "Description": "Manage threat indicators this app creates or owns",
- "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), without a signed-in user. It cannot update any threat indicators it does not own.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/tiIndicators/{tiIndicator-id}",
"OutputType": "IMicrosoftGraphTiIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityTiIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTiIndicator",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/tiIndicators",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIndicators.ReadWrite.OwnedBy",
- "Description": "Manage threat indicators this app creates or owns",
- "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), without a signed-in user. It cannot update any threat indicators it does not own.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/tiIndicators",
"OutputType": "IMicrosoftGraphTiIndicator",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityTiIndicator"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTiIndicator",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicators-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/tiIndicators/$count",
"Module": "Beta.Security",
- "Permissions": {
- "Name": "ThreatIndicators.ReadWrite.OwnedBy",
- "Description": "Manage threat indicators this app creates or owns",
- "FullDescription": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), without a signed-in user. It cannot update any threat indicators it does not own.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/security/tiIndicators/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityTiIndicatorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTiIndicatorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/triggers",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/triggers",
"OutputType": "IMicrosoftGraphSecurityTriggersRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityTrigger"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTrigger",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}",
"Module": "Beta.Security",
+ "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}",
+ "OutputType": "IMicrosoftGraphSecurityRetentionEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityTriggerRetentionEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerRetentionEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-retentionevent-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/triggers/retentionEvents",
"Module": "Beta.Security",
+ "Uri": "/security/triggers/retentionEvents",
+ "OutputType": "IMicrosoftGraphSecurityRetentionEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionEvent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityTriggerRetentionEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerRetentionEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-retentionevent-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/triggers/retentionEvents/$count",
"Module": "Beta.Security",
+ "Uri": "/security/triggers/retentionEvents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityTriggerRetentionEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerRetentionEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}/retentionEventType",
"Module": "Beta.Security",
+ "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}/retentionEventType",
+ "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityTriggerRetentionEventType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerRetentionEventType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/triggerTypes",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/triggerTypes",
"OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityTriggerType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}",
"Module": "Beta.Security",
+ "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}",
+ "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-retentioneventtype-get?view=graph-rest-1.0"
},
{
- "Uri": "/security/triggerTypes/retentionEventTypes",
"Module": "Beta.Security",
+ "Uri": "/security/triggerTypes/retentionEventTypes",
+ "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSecurityRetentionEventType",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-retentioneventtype-list?view=graph-rest-1.0"
},
{
- "Uri": "/security/triggerTypes/retentionEventTypes/$count",
"Module": "Beta.Security",
+ "Uri": "/security/triggerTypes/retentionEventTypes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "RecordsManagement.Read.All",
"Description": "Read Records Management configuration, labels and policies",
"FullDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "RecordsManagement.ReadWrite.All",
"Description": "Read and write Records Management configuration, labels and policies",
"FullDescription": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}",
"OutputType": "IMicrosoftGraphUserSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSecurityUserSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityUserSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/userSecurityProfiles",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/userSecurityProfiles",
"OutputType": "IMicrosoftGraphUserSecurityProfile",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSecurityUserSecurityProfile"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityUserSecurityProfile",
+ "ApiReferenceLink": null
},
{
- "Uri": "/security/userSecurityProfiles/$count",
"Module": "Beta.Security",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/security/userSecurityProfiles/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSecurityUserSecurityProfileCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSecurityUserSecurityProfileCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}",
"OutputType": "IMicrosoftGraphServiceHealth",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealth-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews",
"OutputType": "IMicrosoftGraphServiceHealth",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceannouncement-list-healthoverviews?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews/$count",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverviewCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverviewCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}",
"OutputType": "IMicrosoftGraphServiceHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues",
"OutputType": "IMicrosoftGraphServiceHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}",
"OutputType": "IMicrosoftGraphServiceHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementIssue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/issues",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/issues",
"OutputType": "IMicrosoftGraphServiceHealthIssue",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServiceAnnouncementIssue"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementIssue",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceannouncement-list-issues?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/issues/$count",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceHealth.Read.All",
- "Description": "Read service health",
- "FullDescription": "Allows the app to read your tenant's service health information, without a signed-in user. Health information may include service issues or service health overviews.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/issues/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaServiceAnnouncementIssueCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementIssueCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}",
"OutputType": "IMicrosoftGraphServiceUpdateMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages",
"OutputType": "IMicrosoftGraphServiceUpdateMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServiceAnnouncementMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceannouncement-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}",
"OutputType": "IMicrosoftGraphServiceAnnouncementAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceannouncementattachment-get?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments",
"OutputType": "IMicrosoftGraphServiceAnnouncementAttachment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageAttachment"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageAttachment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentArchive"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentArchive",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceannouncement-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-list-attachments?view=graph-rest-1.0"
},
{
- "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/admin/serviceAnnouncement/messages/$count",
"Module": "Beta.Devices.ServiceAnnouncement",
- "Permissions": {
- "Name": "ServiceMessage.Read.All",
- "Description": "Read service messages",
- "FullDescription": "Allows the app to read your tenant's service announcement messages, without a signed-in user. Messages may include information about new or changed features.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/admin/serviceAnnouncement/messages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaServiceAnnouncementMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServiceAnnouncementMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipal",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipal",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}",
"OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppManagementPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies",
"OutputType": "IMicrosoftGraphAppManagementPolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalAppManagementPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppManagementPolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppManagementPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppManagementPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}",
"OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo",
+ "OutputType": "IMicrosoftGraphAppRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignedto?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignedToCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignedToCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}",
"OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignment",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments",
+ "OutputType": "IMicrosoftGraphAppRoleAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphAppRoleAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-approleassignments?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalAppRoleAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalAppRoleAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals(appId='{appId}')",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals(appId='{appId}')",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalByAppId"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalByAppId",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/getByIds",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/getByIds",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaServicePrincipalById"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalById",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies",
+ "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphClaimsMappingPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalClaimMappingPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalClaimMappingPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.",
- "IsAdmin": true
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaServicePrincipalCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-createdobjects?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObjectCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObjectCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}",
"OutputType": "IMicrosoftGraphDelegatedPermissionClassification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications",
+ "OutputType": "IMicrosoftGraphDelegatedPermissionClassification",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedPermissionClassification",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-delegatedpermissionclassifications?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/delta",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/delta",
+ "OutputType": "IMicrosoftGraphServicePrincipal",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read all applications",
- "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read all applications",
+ "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaServicePrincipalDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalEndpointCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalEndpointCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies",
+ "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-homerealmdiscoverypolicies?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}",
"OutputType": "IMicrosoftGraphLicenseDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalLicenseDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalLicenseDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails",
"OutputType": "IMicrosoftGraphLicenseDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalLicenseDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalLicenseDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalLicenseDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalLicenseDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/getTeamsLicensingDetails",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/getTeamsLicensingDetails",
"OutputType": "IMicrosoftGraphTeamsLicensingDetails",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalLicenseDetailTeamLicensingDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalLicenseDetailTeamLicensingDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaServicePrincipalMemberGroup"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalMemberGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Device.Read.All",
- "Description": "Read all devices",
- "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Device.ReadWrite.All",
- "Description": "Read and write devices",
- "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
- "IsAdmin": false
+ "Name": "User.Read.All",
+ "Description": "Read all users' full profiles",
+ "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "User.Read",
+ "Description": "Sign you in and read your profile",
+ "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "GroupMember.Read.All",
+ "Description": "Read group memberships",
+ "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "User.ReadWrite.All",
+ "Description": "Read and write all users' full profiles",
+ "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "GroupMember.Read.All",
- "Description": "Read group memberships",
- "FullDescription": "Allows the app to list groups, read basic group properties and read membership of all your groups.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read",
- "Description": "Sign you in and read your profile",
- "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.Read.All",
- "Description": "Read all users' full profiles",
- "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.",
- "IsAdmin": true
+ "Name": "Device.ReadWrite.All",
+ "Description": "Read and write devices",
+ "FullDescription": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "User.ReadWrite.All",
- "Description": "Read and write all users' full profiles",
- "FullDescription": "Allows the app to read and update user profiles without a signed in user.",
- "IsAdmin": false
+ "Name": "Device.Read.All",
+ "Description": "Read all devices",
+ "FullDescription": "Allows the app to read your organization's devices' configuration information without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaServicePrincipalMemberObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalMemberObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-memberof?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole",
"OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole",
"OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}",
"OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants",
+ "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOAuth2PermissionGrant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-oauth2permissiongrants?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "DelegatedPermissionGrant.ReadWrite.All",
- "Description": "Manage all delegated permission grants",
- "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Directory.ReadWrite.All",
"Description": "Read and write directory data",
"FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "DelegatedPermissionGrant.ReadWrite.All",
+ "Description": "Manage all delegated permission grants",
+ "FullDescription": "Allows the app to manage permission grants for delegated permissions exposed by any API (including Microsoft Graph), without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObject",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObject"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-ownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application",
"OutputType": "IMicrosoftGraphApplication",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsApplication"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsApplication",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwner",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint",
"OutputType": "IMicrosoftGraphEndpoint",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal",
"OutputType": "IMicrosoftGraphServicePrincipal",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnerAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalOwnerByRef"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerByRef",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-owners?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerCountAsEndpoint"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerCountAsEndpoint",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalOwnerCountAsUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalOwnerCountAsUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/getPasswordSingleSignOnCredentials",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/getPasswordSingleSignOnCredentials",
+ "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaServicePrincipalPasswordSingleSignOnCredential"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalPasswordSingleSignOnCredential",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-getpasswordsinglesignoncredentials?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration",
"OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}",
"OutputType": "IMicrosoftGraphTargetDeviceGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/targetdevicegroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups",
"OutputType": "IMicrosoftGraphTargetDeviceGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/remotedesktopsecurityconfiguration-list-targetdevicegroups?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}",
"OutputType": "IMicrosoftGraphServicePrincipalRiskDetection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalRiskDetection"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRiskDetection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipalriskdetection-get?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/servicePrincipalRiskDetections",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/servicePrincipalRiskDetections",
"OutputType": "IMicrosoftGraphServicePrincipalRiskDetection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalRiskDetection"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRiskDetection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityprotectionroot-list-serviceprincipalriskdetections?view=graph-rest-1.0"
},
{
- "Uri": "/identityProtection/servicePrincipalRiskDetections/$count",
"Module": "Beta.Identity.SignIns",
- "Permissions": {
- "Name": "IdentityRiskEvent.Read.All",
- "Description": "Read all identity risk event information",
- "FullDescription": "Allows the app to read the identity risk event information for your organization without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/identityProtection/servicePrincipalRiskDetections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaServicePrincipalRiskDetectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalRiskDetectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization",
"OutputType": "IMicrosoftGraphSynchronization",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronization"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronization",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "POST",
"Variants": [
"Acquire",
"AcquireExpanded",
"AcquireViaIdentity",
"AcquireViaIdentityExpanded"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationAccessToken"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationAccessToken",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}",
+ "OutputType": "IMicrosoftGraphSynchronizationJob",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs",
+ "OutputType": "IMicrosoftGraphSynchronizationJob",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationJob",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJob"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJob",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-jobs?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUpload"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUpload",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema",
+ "OutputType": "IMicrosoftGraphSynchronizationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
+ "Name": "CustomSecAttributeProvisioning.Read.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Synchronization.ReadWrite.All",
+ "Description": "Read and write all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Synchronization.Read.All",
"Description": "Read all Azure AD synchronization data. ",
"FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Synchronization.ReadWrite.All",
- "Description": "Read and write all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "Name": "CustomSecAttributeProvisioning.ReadWrite.All",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchema",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-get?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationSecretCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationSecretCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates",
+ "OutputType": "IMicrosoftGraphSynchronizationTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-list-templates?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema",
+ "OutputType": "IMicrosoftGraphSynchronizationSchema",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.ReadWrite.OwnedBy",
"Description": "Manage apps that this app creates or owns",
"FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
- {
- "Name": "Synchronization.Read.All",
- "Description": "Read all Azure AD synchronization data. ",
- "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Synchronization.ReadWrite.All",
"Description": "Read and write all Azure AD synchronization data. ",
"FullDescription": "Allows the application to configure the Azure AD synchronization service, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Synchronization.Read.All",
+ "Description": "Read all Azure AD synchronization data. ",
+ "FullDescription": "Allows the application to read Azure AD synchronization information, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSynchronizationSchema",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchema"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchema",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories",
"OutputType": "IMicrosoftGraphDirectoryDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}",
"OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies",
"OutputType": "IMicrosoftGraphTokenIssuancePolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}",
"OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies",
+ "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
- }
- ],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTokenLifetimePolicy",
- "Method": "GET",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ }
+ ],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-tokenlifetimepolicies?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
- },
- {
- "Name": "Application.ReadWrite.OwnedBy",
- "Description": "Manage apps that this app creates or owns",
- "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
- "IsAdmin": false
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read all your organization's policies without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ApplicationConfiguration",
"Description": "Read and write your organization's application configuration policies",
"FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.OwnedBy",
+ "Description": "Manage apps that this app creates or owns",
+ "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf",
+ "OutputType": "IMicrosoftGraphDirectoryObject",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list-transitivememberof?view=graph-rest-1.0"
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit",
"OutputType": "IMicrosoftGraphAdministrativeUnit",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole",
"OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole",
"OutputType": "IMicrosoftGraphDirectoryRole",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group",
"OutputType": "IMicrosoftGraphGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$count",
"Module": "Beta.Applications",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Application.Read.All",
"Description": "Read all applications",
"FullDescription": "Allows the app to read all applications and service principals without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Application.ReadWrite.All",
- "Description": "Read and write all applications",
- "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Application.ReadWrite.All",
+ "Description": "Read and write all applications",
+ "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/servicePrincipals/getUserOwnedObjects",
"Module": "Beta.Applications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/servicePrincipals/getUserOwnedObjects",
"OutputType": "IMicrosoftGraphDirectoryObject",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetExpanded"
],
- "Command": "Get-MgBetaServicePrincipalUserOwnedObject"
+ "Method": "POST",
+ "Command": "Get-MgBetaServicePrincipalUserOwnedObject",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-1.0"
},
{
- "Uri": "/settings/$count",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/settings/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaSettingCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSettingCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareContentTypeBase"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareContentTypeBase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareContentTypeBaseTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareContentTypeBaseTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaShareCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/driveItem",
"Module": "Beta.Files",
+ "Uri": "/shares/{sharedDriveItem-id}/driveItem",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.ReadWrite",
"Description": "Have full access to your files",
"FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
- },
- {
- "Name": "Files.ReadWrite.All",
- "Description": "Have full access to all files you have access to",
- "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Edit or delete items in all site collections",
"FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Files.ReadWrite.All",
+ "Description": "Have full access to all files you have access to",
+ "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/driveItem/content",
"Module": "Beta.Files",
+ "Uri": "/shares/{sharedDriveItem-id}/driveItem/content",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareDriveItemContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream",
"Module": "Beta.Files",
+ "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareDriveItemContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/items",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/items/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/items/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareItemCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareList"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/drive",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/listItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/delta",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/delta",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions",
"OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions",
"OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaShareListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaShareListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/operations",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareListSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareListSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/permission",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/permission",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSharePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaSharePermission",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/root",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/root",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareRoot"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareRoot",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/root/content",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/root/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareRootContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareRootContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/root/contentStream",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/root/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareRootContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareRootContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}",
"Module": "Beta.Files",
+ "Uri": "/shares/{sharedDriveItem-id}",
+ "OutputType": "IMicrosoftGraphSharedDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.ReadWrite",
"Description": "Have full access to your files",
"FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
- },
- {
- "Name": "Files.ReadWrite.All",
- "Description": "Have full access to all files you have access to",
- "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Edit or delete items in all site collections",
"FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Files.ReadWrite.All",
+ "Description": "Have full access to all files you have access to",
+ "FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSharedDriveItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0"
},
{
- "Uri": "/shares",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares",
"OutputType": "IMicrosoftGraphSharedDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/shares/{sharedDriveItem-id}/site",
"Module": "Beta.Files",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/shares/{sharedDriveItem-id}/site",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaShareSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaShareSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites",
"Module": "Beta.Sites",
+ "Uri": "/sites",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/analytics",
+ "OutputType": "IMicrosoftGraphItemAnalytics",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStat"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities",
"OutputType": "IMicrosoftGraphItemActivity",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticItemActivityStatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticItemActivityStatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/lastSevenDays",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/analytics/lastSevenDays",
+ "OutputType": "IMicrosoftGraphItemActivityStat",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticLastSevenDay"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticLastSevenDay",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/analytics/allTime",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/analytics/allTime",
+ "OutputType": "IMicrosoftGraphItemActivityStat",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteAnalyticTime"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteAnalyticTime",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteApplicableContentTypeForList"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteApplicableContentTypeForList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteByPath",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/columns/{columnDefinition-id}",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/columns",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/columns",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/columns/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/columns/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteContentTypeBase"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeBase",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteContentTypeBaseType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeBaseType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteContentTypeBaseTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeBaseTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/getCompatibleHubContentTypes",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/contentTypes/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/contentTypes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get1"
],
- "Command": "Get-MgBetaSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/drive",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/drive",
+ "OutputType": "IMicrosoftGraphDrive",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteDefaultDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteDefaultDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/delta",
"Module": "Beta.Sites",
+ "Uri": "/sites/delta",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"Delta"
],
- "Command": "Get-MgBetaSiteDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/drives/{drive-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/drives/{drive-id}",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/drives",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/drives",
+ "OutputType": "IMicrosoftGraphDrive",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/drives/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/drives/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteDriveCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteDriveCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/externalColumns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/externalColumns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/externalColumns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/externalColumns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteExternalColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteExternalColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists",
"OutputType": "IMicrosoftGraphList",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
- "List",
- "List1"
+ "List"
],
- "Command": "Get-MgBetaSiteGetByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPath",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics",
"OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteGetByPathAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteGetByPathApplicableContentTypeForList"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathApplicableContentTypeForList",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes",
"OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteGetByPathDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathExternalColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathExternalColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote",
- "Module": "Beta.Notes",
- "Permissions": [],
+ "Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists",
+ "OutputType": "IMicrosoftGraphList",
"ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenote",
+ "Permissions": [],
+ "Variants": [
+ "List"
+ ],
"Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
+ },
+ {
+ "Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote",
+ "OutputType": "IMicrosoftGraphOnenote",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteGetByPathOnenote"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathOnenote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations",
"OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages",
"OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathPage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathPermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathPermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteGetByPathSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-subsites?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore",
"OutputType": "IMicrosoftGraphTermStore",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteGetByPathTermStore"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetByPathTermStore",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-store-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteGetGraphBPrePathActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetGraphBPrePathActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteGetGraphBPrePathByPath"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteGetGraphBPrePathByPath",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteItemLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteItemLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteItemLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteItemLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}",
+ "OutputType": "IMicrosoftGraphList",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphList",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists",
+ "OutputType": "IMicrosoftGraphList",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphList",
- "Method": "GET",
"Variants": [
"List1"
],
- "Command": "Get-MgBetaSiteList"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteList",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/activities",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/activities",
+ "OutputType": "IMicrosoftGraphItemActivityOld",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/columns",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/columns",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/columns/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/columns/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentType",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/list-list-contenttypes?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/columndefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns",
+ "OutputType": "IMicrosoftGraphColumnDefinition",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListContentTypeColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumn",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-list-columns?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks",
"OutputType": "IMicrosoftGraphColumnLink",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnLink"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnLink",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnLinkCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnLinkCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnPosition"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnPosition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnPositionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnPositionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn",
"OutputType": "IMicrosoftGraphColumnDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeColumnSourceColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeColumnSourceColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes",
+ "OutputType": "IMicrosoftGraphContentType",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Manage.All",
"Description": "Create, edit, and delete items and lists in all site collections",
"FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphContentType",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeCompatibleHubContentType"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeCompatibleHubContentType",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListContentTypeCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListContentTypeCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/drive",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/drive",
"OutputType": "IMicrosoftGraphDrive",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListDrive"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListDrive",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}",
+ "OutputType": "IMicrosoftGraphListItem",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items",
+ "OutputType": "IMicrosoftGraphListItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItem",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}",
"OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities",
+ "OutputType": "IMicrosoftGraphItemActivityOld",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemActivityOld",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListItemActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivity",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')",
"OutputType": "IMicrosoftGraphItemActivityStat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityByInterval"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityByInterval",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem",
"OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemActivityListItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemActivityListItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics",
+ "OutputType": "IMicrosoftGraphItemAnalytics",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphItemAnalytics",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemAnalytic"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemAnalytic",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/delta",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/delta",
+ "OutputType": "IMicrosoftGraphListItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphListItem",
- "Method": "GET",
"Variants": [
"Delta",
"Delta1",
"DeltaViaIdentity",
"DeltaViaIdentity1"
],
- "Command": "Get-MgBetaSiteListItemDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}",
+ "OutputType": "IMicrosoftGraphDocumentSetVersion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.Selected",
+ "Description": "Access selected site collections",
+ "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Selected",
- "Description": "Access selected site collections",
- "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
- "IsAdmin": false
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions",
+ "OutputType": "IMicrosoftGraphDocumentSetVersion",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.Selected",
+ "Description": "Access selected site collections",
+ "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Selected",
- "Description": "Access selected site collections",
- "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
- "IsAdmin": false
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDocumentSetVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListItemDocumentSetVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDocumentSetVersion",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-list-documentsetversions?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Sites.Selected",
+ "Description": "Access selected site collections",
+ "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Selected",
- "Description": "Access selected site collections",
- "FullDescription": "Allow the application to access a subset of site collections without a signed in user. The specific site collections and the permissions granted will be configured in SharePoint Online.",
- "IsAdmin": false
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDocumentSetVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDocumentSetVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDocumentSetVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDocumentSetVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Files.Read",
"Description": "Read your files",
"FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Files.Read.All",
- "Description": "Read all files that you have access to",
- "FullDescription": "Allows the app to read all files you can access.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Edit or delete items in all site collections",
+ "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Files.ReadWrite",
- "Description": "Have full access to your files",
- "FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections",
+ "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections",
- "FullDescription": "Allow the application to read documents and list items in all site collections on your behalf",
- "IsAdmin": false
+ "Name": "Files.ReadWrite",
+ "Description": "Have full access to your files",
+ "FullDescription": "Allows the app to read, create, update, and delete your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Edit or delete items in all site collections",
- "FullDescription": "Allow the application to edit or delete documents and list items in all site collections on your behalf.",
- "IsAdmin": false
+ "Name": "Files.Read.All",
+ "Description": "Read all files that you have access to",
+ "FullDescription": "Allows the app to read all files you can access.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDriveItem"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDriveItem",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDriveItemContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDriveItemContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemDriveItemContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemDriveItemContentStream",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemField"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}",
+ "OutputType": "IMicrosoftGraphListItemVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions",
+ "OutputType": "IMicrosoftGraphListItemVersion",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphListItemVersion",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListItemVersion"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemVersion",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemVersionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemVersionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListItemVersionField"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListItemVersionField",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}",
+ "OutputType": "IMicrosoftGraphRichLongRunningOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/operations",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/operations",
+ "OutputType": "IMicrosoftGraphRichLongRunningOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/operations/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/lists/{list-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteListSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListSubscription",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteListSubscriptionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteListSubscriptionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}",
+ "OutputType": "IMicrosoftGraphNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/notebooks",
+ "OutputType": "IMicrosoftGraphNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphNotebook",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteNotebook",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-notebooks?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/$count",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/notebooks/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteNotebookCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteNotebookCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl",
+ "OutputType": "IMicrosoftGraphCopyNotebookModel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read.All",
- "Description": "Read all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read.All",
+ "Description": "Read all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphCopyNotebookModel",
- "Method": "POST",
"Variants": [
"Get",
"GetExpanded",
"GetViaIdentity",
"GetViaIdentityExpanded"
],
- "Command": "Get-MgBetaSiteOnenoteNotebookFromWebUrl"
+ "Method": "POST",
+ "Command": "Get-MgBetaSiteOnenoteNotebookFromWebUrl",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteNotebookSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteNotebookSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteNotebookSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteNotebookSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}",
+ "OutputType": "IMicrosoftGraphOnenoteOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenoteoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/operations/$count",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/pages",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/pages",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenotePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenotePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenotePageContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenotePageContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/pages/$count",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/pages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenotePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenotePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}",
"OutputType": "IMicrosoftGraphOnenoteResource",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteResource"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteResource",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteResourceContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteResourceContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/resources/$count",
"Module": "Beta.Notes",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/onenote/resources/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteResourceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteResourceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/$count",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups",
+ "OutputType": "IMicrosoftGraphSectionGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSectionGroup",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteOnenoteSectionGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onenote-list-sectiongroups?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteOnenoteSectionGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections",
+ "OutputType": "IMicrosoftGraphOnenoteSection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenoteSection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteSectionGroupSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionGroupSection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sectiongroup-list-sections?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages",
"Module": "Beta.Notes",
+ "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages",
+ "OutputType": "IMicrosoftGraphOnenotePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Read",
"Description": "Read your OneNote notebooks",
"FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
- },
- {
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOnenotePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOnenoteSectionPage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOnenoteSectionPage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}",
+ "OutputType": "IMicrosoftGraphRichLongRunningOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/richlongrunningoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/operations",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/operations",
+ "OutputType": "IMicrosoftGraphRichLongRunningOperation",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRichLongRunningOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/operations/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- {
- "Name": "Sites.Manage.All",
- "Description": "Create, edit, and delete items and lists in all site collections",
- "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
- "IsAdmin": false
- },
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Manage.All",
+ "Description": "Create, edit, and delete items and lists in all site collections",
+ "FullDescription": "Allows the app to create or delete document libraries and lists in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.FullControl.All",
+ "Description": "Have full control of all site collections",
+ "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}",
+ "OutputType": "IMicrosoftGraphBaseSitePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/pages",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/pages",
+ "OutputType": "IMicrosoftGraphBaseSitePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphBaseSitePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/basesitepage-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage",
"OutputType": "IMicrosoftGraphSitePage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/sitePage",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/pages/sitePage",
+ "OutputType": "IMicrosoftGraphSitePage",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSitePage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout",
"OutputType": "IMicrosoftGraphCanvasLayout",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayout"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayout",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}",
"OutputType": "IMicrosoftGraphHorizontalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections",
"OutputType": "IMicrosoftGraphHorizontalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}",
"OutputType": "IMicrosoftGraphHorizontalSectionColumn",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns",
"OutputType": "IMicrosoftGraphHorizontalSectionColumn",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection",
"OutputType": "IMicrosoftGraphVerticalSection",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageWebPart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts",
"OutputType": "IMicrosoftGraphWebPart",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageAsSitePageWebPart"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageAsSitePageWebPartCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageAsSitePageWebPartCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/pages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/sitePage/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/pages/sitePage/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageCountAsSitePage"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCountAsSitePage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageCreatedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCreatedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageCreatedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCreatedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageLastModifiedByUser"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageLastModifiedByUser",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageLastModifiedByUserMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageLastModifiedByUserMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart",
"OutputType": "IMicrosoftGraphWebPartPosition",
- "Method": "POST",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart"
+ "Method": "POST",
+ "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/permissions/{permission-id}",
"Module": "Beta.Sites",
- "Permissions": {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/permissions/{permission-id}",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get-permission?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/permissions",
"Module": "Beta.Sites",
- "Permissions": {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/permissions",
"OutputType": "IMicrosoftGraphPermission",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSitePermission"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePermission",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-permissions?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/permissions/$count",
"Module": "Beta.Sites",
- "Permissions": {
- "Name": "Sites.FullControl.All",
- "Description": "Have full control of all site collections",
- "FullDescription": "Allows the app to have full control of all site collections without a signed in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/permissions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSitePermissionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSitePermissionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})",
+ "OutputType": "IMicrosoftGraphRecentNotebook",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Notes.Create",
"Description": "Create your OneNote notebooks",
"FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": true
},
{
- "Name": "Notes.Read",
- "Description": "Read your OneNote notebooks",
- "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "Name": "Notes.ReadWrite.All",
+ "Description": "Read and write all OneNote notebooks that you can access",
+ "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.Read.All",
"Description": "Read all OneNote notebooks that you can access",
"FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Notes.ReadWrite",
"Description": "Read and write your OneNote notebooks",
"FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Notes.ReadWrite.All",
- "Description": "Read and write all OneNote notebooks that you can access",
- "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.",
- "IsAdmin": false
+ "Name": "Notes.Read",
+ "Description": "Read your OneNote notebooks",
+ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphRecentNotebook",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteRecentNotebook"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteRecentNotebook",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore",
+ "OutputType": "IMicrosoftGraphTermStore",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStore",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStore"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStore",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-store-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}",
+ "OutputType": "IMicrosoftGraphTermStoreGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups",
+ "OutputType": "IMicrosoftGraphTermStoreGroup",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-list-groups?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets",
+ "OutputType": "IMicrosoftGraphTermStoreSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-list-sets?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetParentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetParentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}",
+ "OutputType": "IMicrosoftGraphTermStoreTerm",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreGroupSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreGroupSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}",
+ "OutputType": "IMicrosoftGraphTermStoreSet",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-set-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children",
+ "OutputType": "IMicrosoftGraphTermStoreTerm",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup",
"OutputType": "IMicrosoftGraphTermStoreGroup",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroup",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-group-list-sets?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-children?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations",
+ "OutputType": "IMicrosoftGraphTermStoreRelation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-list-relations?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}",
+ "OutputType": "IMicrosoftGraphTermStoreTerm",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTerm",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children",
+ "OutputType": "IMicrosoftGraphTermStoreTerm",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChild"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChild",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermChildSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermChildSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}",
"OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations",
+ "OutputType": "IMicrosoftGraphTermStoreRelation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTermStoreRelation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelation"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TermStore.Read.All",
"Description": "Read term store data",
"FullDescription": "Allows the app to read the term store data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TermStore.ReadWrite.All",
"Description": "Read and write term store data",
"FullDescription": "Allows the app to read or modify data that you have access to. This includes all sets, groups and terms in the term store.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelationFromTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelationFromTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelationSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelationSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm",
"OutputType": "IMicrosoftGraphTermStoreTerm",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermRelationToTerm"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermRelationToTerm",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set",
"OutputType": "IMicrosoftGraphTermStoreSet",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSiteTermStoreSetTermSet"
+ "Method": "GET",
+ "Command": "Get-MgBetaSiteTermStoreSetTermSet",
+ "ApiReferenceLink": null
},
{
- "Uri": "/subscribedSkus/{subscribedSku-id}",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/subscribedSkus/{subscribedSku-id}",
+ "OutputType": "IMicrosoftGraphSubscribedSku",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubscribedSku",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSubscribedSku"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubscribedSku",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-get?view=graph-rest-1.0"
},
{
- "Uri": "/subscribedSkus",
"Module": "Beta.Identity.DirectoryManagement",
+ "Uri": "/subscribedSkus",
+ "OutputType": "IMicrosoftGraphSubscribedSku",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
{
"Name": "Organization.Read.All",
"Description": "Read organization information",
"FullDescription": "Allows the app to read the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Organization.ReadWrite.All",
"Description": "Read and write organization information",
"FullDescription": "Allows the app to read and write the organization and related resources, without a signed-in user. Related resources include things like subscribed skus and tenant branding information.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSubscribedSku",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaSubscribedSku"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubscribedSku",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-list?view=graph-rest-1.0"
},
{
- "Uri": "/subscriptions/{subscription-id}",
"Module": "Beta.ChangeNotifications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/subscriptions/{subscription-id}",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubscription",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-get?view=graph-rest-1.0"
},
{
- "Uri": "/subscriptions",
"Module": "Beta.ChangeNotifications",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/subscriptions",
"OutputType": "IMicrosoftGraphSubscription",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaSubscription"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubscription",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-list?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/sites/{site-id1}",
"Module": "Beta.Sites",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/sites/{site-id}/sites/{site-id1}",
"OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaSubSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubSite",
+ "ApiReferenceLink": null
},
{
- "Uri": "/sites/{site-id}/sites",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/sites",
+ "OutputType": "IMicrosoftGraphSite",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSite",
- "Method": "GET",
"Variants": [
"List2"
],
- "Command": "Get-MgBetaSubSite"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubSite",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list-subsites?view=graph-rest-1.0"
},
{
- "Uri": "/sites/{site-id}/sites/$count",
"Module": "Beta.Sites",
+ "Uri": "/sites/{site-id}/sites/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Sites.Read.All",
"Description": "Read items in all site collections ",
"FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Sites.ReadWrite.All",
"Description": "Read and write items in all site collections",
"FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaSubSiteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaSubSiteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}",
+ "OutputType": "IMicrosoftGraphTeam",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeam",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams",
"Module": "Beta.Teams",
+ "Uri": "/teams",
+ "OutputType": "IMicrosoftGraphTeam",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamSettings.ReadWrite.All",
"Description": "Read and change all teams' settings",
"FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeam",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Channel.ReadBasic.All",
- "Description": "Read the names and descriptions of all channels",
- "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ChannelSettings.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelSettings.ReadWrite.All",
- "Description": "Read and write the names, descriptions, and settings of all channels",
- "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChannelSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.All",
+ "Description": "Read and write the names, descriptions, and settings of all channels",
+ "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Channel.ReadBasic.All",
+ "Description": "Read the names and descriptions of all channels",
+ "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"Get1",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Channel.ReadBasic.All",
- "Description": "Read the names and descriptions of all channels",
- "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ChannelSettings.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelSettings.ReadWrite.All",
- "Description": "Read and write the names, descriptions, and settings of all channels",
- "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChannelSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.All",
+ "Description": "Read and write the names, descriptions, and settings of all channels",
+ "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Channel.ReadBasic.All",
+ "Description": "Read the names and descriptions of all channels",
+ "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"List1"
],
- "Command": "Get-MgBetaTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Channel.ReadBasic.All",
- "Description": "Read the names and descriptions of all channels",
- "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "ChannelSettings.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelSettings.ReadWrite.All",
- "Description": "Read and write the names, descriptions, and settings of all channels",
- "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChannelSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Directory.Read.All",
"Description": "Read directory data",
"FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.ReadWrite.All",
+ "Description": "Read and write the names, descriptions, and settings of all channels",
+ "FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Channel.ReadBasic.All",
+ "Description": "Read the names and descriptions of all channels",
+ "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder",
+ "OutputType": "IMicrosoftGraphDriveItem",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "File.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "Files.Read",
- "Description": "Read your files",
- "FullDescription": "Allows the app to read your files.",
- "IsAdmin": false
- },
{
"Name": "Files.Read.All",
"Description": "Read files in all site collections",
"FullDescription": "Allows the app to read all files in all site collections without a signed in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Files.ReadWrite",
"Description": "Have full access to your files",
"FullDescription": "Allows the app to read, create, update, and delete your files.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Files.Read",
+ "Description": "Read your files",
+ "FullDescription": "Allows the app to read your files.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Files.ReadWrite.All",
"Description": "Have full access to all files you have access to",
"FullDescription": "Allows the app to read, create, update and delete all files that you can access.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedPersonal",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Sites.ReadWrite.All",
+ "Description": "Read and write items in all site collections",
+ "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Sites.Read.All",
+ "Description": "Read items in all site collections ",
+ "FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.ReadWrite.All",
"Description": "Read and write all groups",
"FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.Read.All",
- "Description": "Read items in all site collections ",
- "FullDescription": "Allows the app to read documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Sites.ReadWrite.All",
- "Description": "Read and write items in all site collections",
- "FullDescription": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
- "IsAdmin": false
+ "Name": "File.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelFileFolder"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelFileFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelFileFolderContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelFileFolderContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelFileFolderContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelFileFolderContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "ChannelMember.ReadWrite.All",
- "Description": "Add and remove members from all channels",
- "FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamMember.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelMember.ReadWrite.All",
+ "Description": "Add and remove members from all channels",
+ "FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/members",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/members",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/members/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta",
+ "OutputType": "IMicrosoftGraphChatMessage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageReplyDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReplyDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
+ "OutputType": "IMicrosoftGraphChatMessageHostedContent",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
{
"Name": "ChannelMessage.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelMessage.Read.All",
+ "Description": "Read all channel messages",
+ "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/getAllRetainedMessages",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "ChannelMessage.Read.All",
- "Description": "Read all channel messages",
- "FullDescription": "Allows the app to read all channel messages in Microsoft Teams",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/getAllRetainedMessages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelRetainedMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelRetainedMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
+ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams",
+ "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list-allowedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ChannelMember.Read.All",
"Description": "Read the members of all channels",
"FullDescription": "Read the members of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelMember.ReadWrite.All",
"Description": "Add and remove members from all channels",
"FullDescription": "Add and remove members from all channels, without a signed-in user. Also allows changing a member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelSharedWithTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelSharedWithTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}",
+ "OutputType": "IMicrosoftGraphTeamsTab",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage only its own tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam",
+ "Description": "Allow the app to manage all tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.All",
- "Description": "Read tabs in Microsoft Teams.",
- "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam.All",
+ "Description": "Allow the Teams app to manage all tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.Group",
+ "Name": "TeamsTab.ReadWrite.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWrite.All",
"Description": "Read and write tabs in Microsoft Teams.",
"FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.All",
+ "Description": "Read tabs in Microsoft Teams.",
+ "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam",
- "Description": "Allow the app to manage all tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam.All",
- "Description": "Allow the Teams app to manage all tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage only its own tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage only its own tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelTab",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/tabs",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/tabs",
+ "OutputType": "IMicrosoftGraphTeamsTab",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage only its own tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam",
+ "Description": "Allow the app to manage all tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.All",
- "Description": "Read tabs in Microsoft Teams.",
- "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam.All",
+ "Description": "Allow the Teams app to manage all tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.Group",
+ "Name": "TeamsTab.ReadWrite.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWrite.All",
"Description": "Read and write tabs in Microsoft Teams.",
"FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.All",
+ "Description": "Read tabs in Microsoft Teams.",
+ "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam",
- "Description": "Allow the app to manage all tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam.All",
- "Description": "Allow the Teams app to manage all tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage only its own tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage only its own tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage only its own tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam",
+ "Description": "Allow the app to manage all tabs in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage only its own tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.All",
- "Description": "Read tabs in Microsoft Teams.",
- "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
- "IsAdmin": false
+ "Name": "TeamsTab.ReadWriteForTeam.All",
+ "Description": "Allow the Teams app to manage all tabs for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.Read.Group",
+ "Name": "TeamsTab.ReadWrite.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsTab.ReadWrite.All",
"Description": "Read and write tabs in Microsoft Teams.",
"FullDescription": "Read and write tabs in any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsTab.Read.All",
+ "Description": "Read tabs in Microsoft Teams.",
+ "FullDescription": "Read the names and settings of tabs inside any team in Microsoft Teams, without a signed-in user. This does not give access to the content inside the tabs. ",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam",
- "Description": "Allow the app to manage all tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteForTeam.All",
- "Description": "Allow the Teams app to manage all tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall all tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage only its own tabs in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs to teams you can access.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsTab.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage only its own tabs for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamChannelTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamChannelTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamSettings.ReadWrite.All",
"Description": "Read and change all teams' settings",
"FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/group/serviceProvisioningErrors",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/group/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamGroupServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamGroupServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamGroupServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamGroupServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/incomingChannels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/incomingChannels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamIncomingChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamIncomingChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/incomingChannels",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/incomingChannels",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamIncomingChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamIncomingChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-incomingchannels?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/incomingChannels/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/incomingChannels/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Channel.ReadBasic.All",
"Description": "Read the names and descriptions of all channels",
"FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamIncomingChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamIncomingChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}",
+ "OutputType": "IMicrosoftGraphTeamsAppInstallation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage itself in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForTeam",
+ "Description": "Manage installed Teams apps in teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
+ "Description": "Allow the Teams app to manage itself and its permission grants in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam",
+ "Description": "Manage installation and permission grants of Teams apps in teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadForUser",
+ "Description": "Read your installed Teams apps",
+ "FullDescription": "Allows the app to read the Teams apps that are installed for you. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadForTeam",
"Description": "Read installed Teams apps in teams",
"FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadForTeam.All",
- "Description": "Read installed Teams apps for all teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadForUser",
- "Description": "Read your installed Teams apps",
- "FullDescription": "Allows the app to read the Teams apps that are installed for you. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
+ "Description": "Manage Teams apps for all teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam",
- "Description": "Manage installation and permission grants of Teams apps in teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself and its permission grants for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any team, without a signed-in user, and manage its permission grants for accessing those specific teams' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All",
"Description": "Manage installation and permission grants of Teams apps for all teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
- "Description": "Allow the Teams app to manage itself and its permission grants in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself and its permission grants for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any team, without a signed-in user, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam.All",
+ "Description": "Read installed Teams apps for all teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam",
- "Description": "Manage installed Teams apps in teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
- "Description": "Manage Teams apps for all teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage itself in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
- "IsAdmin": true
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/installedApps",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/installedApps",
+ "OutputType": "IMicrosoftGraphTeamsAppInstallation",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam",
+ "Description": "Read installed Teams apps in teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForTeam",
- "Description": "Read installed Teams apps in teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage itself in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadForTeam.All",
- "Description": "Read installed Teams apps for all teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForTeam",
+ "Description": "Manage installed Teams apps in teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
+ "Description": "Allow the Teams app to manage itself and its permission grants in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam",
"Description": "Manage installation and permission grants of Teams apps in teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All",
- "Description": "Manage installation and permission grants of Teams apps for all teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
- "Description": "Allow the Teams app to manage itself and its permission grants in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
+ "Description": "Manage Teams apps for all teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam.All",
"Description": "Allow the Teams app to manage itself and its permission grants for all teams",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any team, without a signed-in user, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam",
- "Description": "Manage installed Teams apps in teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All",
+ "Description": "Manage installation and permission grants of Teams apps for all teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
- "Description": "Manage Teams apps for all teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam.All",
+ "Description": "Read installed Teams apps for all teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage itself in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppInstallation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamInstalledApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamInstalledApp",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-installedapps?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/installedApps/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/installedApps/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
- },
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam",
+ "Description": "Read installed Teams apps in teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForTeam",
- "Description": "Read installed Teams apps in teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage itself in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadForTeam.All",
- "Description": "Read installed Teams apps for all teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteForTeam",
+ "Description": "Manage installed Teams apps in teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
+ "Description": "Allow the Teams app to manage itself and its permission grants in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam",
"Description": "Manage installation and permission grants of Teams apps in teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams the signed-in user can access. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All",
- "Description": "Manage installation and permission grants of Teams apps for all teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam",
- "Description": "Allow the Teams app to manage itself and its permission grants in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in teams the signed-in user can access, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
+ "Description": "Manage Teams apps for all teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteAndConsentSelfForTeam.All",
"Description": "Allow the Teams app to manage itself and its permission grants for all teams",
"FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself for any team, without a signed-in user, and manage its permission grants for accessing those specific teams' data.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam",
- "Description": "Manage installed Teams apps in teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadWriteAndConsentForTeam.All",
+ "Description": "Manage installation and permission grants of Teams apps for all teams",
+ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Gives the ability to manage permission grants for accessing those specific teams' data.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteForTeam.All",
- "Description": "Manage Teams apps for all teams",
- "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam.All",
+ "Description": "Read installed Teams apps for all teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage itself in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamInstalledAppCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamInstalledAppCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamInstalledAppTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamInstalledAppTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition",
"OutputType": "IMicrosoftGraphTeamsAppDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamInstalledAppTeamAppDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamInstalledAppTeamAppDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/members/{conversationMember-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/members/{conversationMember-id}",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "TeamMember.Read.All",
- "Description": "Read the members of all teams",
- "FullDescription": "Read the members of all teams, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "TeamMember.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamMember.ReadWrite.All",
"Description": "Add and remove members from all teams",
"FullDescription": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamMember.Read.All",
+ "Description": "Read the members of all teams",
+ "FullDescription": "Read the members of all teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/members",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/members",
+ "OutputType": "IMicrosoftGraphConversationMember",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "TeamMember.Read.All",
- "Description": "Read the members of all teams",
- "FullDescription": "Read the members of all teams, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "TeamMember.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamMember.ReadWrite.All",
"Description": "Add and remove members from all teams",
"FullDescription": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamMember.Read.All",
+ "Description": "Read the members of all teams",
+ "FullDescription": "Read the members of all teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/members/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "TeamMember.Read.All",
- "Description": "Read the members of all teams",
- "FullDescription": "Read the members of all teams, without a signed-in user.",
- "IsAdmin": false
- },
{
"Name": "TeamMember.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamMember.ReadWrite.All",
"Description": "Add and remove members from all teams",
"FullDescription": "Add and remove members from all teams, without a signed-in user. Also allows changing a team member's role, for example from owner to non-owner.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamMember.Read.All",
+ "Description": "Read the members of all teams",
+ "FullDescription": "Read the members of all teams, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/getOpenShifts",
"Module": "Beta.Teams",
+ "Uri": "/teams/getOpenShifts",
+ "OutputType": "IMicrosoftGraphOpenShift",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOpenShift",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamOpenShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOpenShift",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}",
"OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/operations",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/operations",
"OutputType": "IMicrosoftGraphTeamsAsyncOperation",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOperation",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/operations/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/operations/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners/{user-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners/{user-id}",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners",
"OutputType": "IMicrosoftGraphUser",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamOwner"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwner",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOwnerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwnerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings",
"OutputType": "IMicrosoftGraphMailboxSettings",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOwnerMailboxSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwnerMailboxSetting",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors",
"OutputType": "IMicrosoftGraphServiceProvisioningError",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamOwnerServiceProvisioningError"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwnerServiceProvisioningError",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamOwnerServiceProvisioningErrorCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamOwnerServiceProvisioningErrorCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}",
"OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPermissionGrant",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/permissionGrants",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/permissionGrants",
+ "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "TeamsApp.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam",
+ "Description": "Read installed Teams apps in teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.ReadForTeam",
- "Description": "Read installed Teams apps in teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForTeam.All",
- "Description": "Read installed Teams apps for all teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage itself in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForTeam",
"Description": "Manage installed Teams apps in teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForTeam.All",
"Description": "Manage Teams apps for all teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage itself in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadForTeam.All",
+ "Description": "Read installed Teams apps for all teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsApp.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPermissionGrant"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPermissionGrant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-list-permissiongrants?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/permissionGrants/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/permissionGrants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "TeamsApp.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadForTeam",
+ "Description": "Read installed Teams apps in teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamsAppInstallation.Read.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
- },
- {
- "Name": "TeamsAppInstallation.ReadForTeam",
- "Description": "Read installed Teams apps in teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in teams that you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "TeamsAppInstallation.ReadForTeam.All",
- "Description": "Read installed Teams apps for all teams",
- "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
+ "Description": "Allow the Teams app to manage itself in teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForTeam",
"Description": "Manage installed Teams apps in teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in teams you can access. Does not give the ability to read application-specific settings.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
+ "Description": "Allow the Teams app to manage itself for all teams",
+ "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamsAppInstallation.ReadWriteForTeam.All",
"Description": "Manage Teams apps for all teams",
"FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam",
- "Description": "Allow the Teams app to manage itself in teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself to teams you can access.",
- "IsAdmin": true
+ "Name": "TeamsAppInstallation.ReadForTeam.All",
+ "Description": "Read installed Teams apps for all teams",
+ "FullDescription": "Allows the app to read the Teams apps that are installed in any team, without a signed-in user. Does not give the ability to read application-specific settings.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamsAppInstallation.ReadWriteSelfForTeam.All",
- "Description": "Allow the Teams app to manage itself for all teams",
- "FullDescription": "Allows a Teams app to read, install, upgrade, and uninstall itself in any team, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamsApp.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPermissionGrantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPermissionGrantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/photo",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/photo",
"OutputType": "IMicrosoftGraphProfilePhoto",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPhoto"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPhoto",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/photo/$value",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/photo/$value",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPhotoContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPhotoContent",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/primaryChannel",
+ "OutputType": "IMicrosoftGraphChannel",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Channel.ReadBasic.All",
- "Description": "Read the names and descriptions of all channels",
- "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "ChannelSettings.Read.All",
- "Description": "Read the names, descriptions, and settings of all channels",
- "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "ChannelSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "ChannelSettings.Read.Group",
+ "Name": "ChannelSettings.ReadWrite.Group",
"Description": "Consent name unavailable",
"FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "ChannelSettings.ReadWrite.All",
"Description": "Read and write the names, descriptions, and settings of all channels",
"FullDescription": "Read and write the names, descriptions, and settings of all channels, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "ChannelSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "ChannelSettings.Read.All",
+ "Description": "Read the names, descriptions, and settings of all channels",
+ "FullDescription": "Read all channel names, channel descriptions, and channel settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Channel.ReadBasic.All",
+ "Description": "Read the names and descriptions of all channels",
+ "FullDescription": "Read all channel names and channel descriptions, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannel",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get-primarychannel?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/filesFolder",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/filesFolder",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelFileFolder"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelFileFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/members",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/delta",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/delta",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list-allowedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelTab",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/tabs",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/tabs",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamPrimaryChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/primaryChannel/tabs/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/tabs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamPrimaryChannelTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamPrimaryChannelTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule",
+ "OutputType": "IMicrosoftGraphSchedule",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSchedule",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamSchedule"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamSchedule",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}",
+ "OutputType": "IMicrosoftGraphDayNote",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDayNote",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleDayNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleDayNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/dayNotes",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/dayNotes",
+ "OutputType": "IMicrosoftGraphDayNote",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDayNote",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleDayNote"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleDayNote",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/dayNotes/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/dayNotes/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleDayNoteCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleDayNoteCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}",
+ "OutputType": "IMicrosoftGraphOfferShiftRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOfferShiftRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOfferShiftRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOfferShiftRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/offershiftrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/offerShiftRequests",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/offerShiftRequests",
+ "OutputType": "IMicrosoftGraphOfferShiftRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOfferShiftRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleOfferShiftRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOfferShiftRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/offershiftrequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOfferShiftRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOfferShiftRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}",
+ "OutputType": "IMicrosoftGraphOpenShift",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOpenShift",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOpenShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshift-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/openShifts",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShifts",
+ "OutputType": "IMicrosoftGraphOpenShift",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOpenShift",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleOpenShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshift-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}",
+ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshiftchangerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests",
+ "OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphOpenShiftChangeRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/openshiftchangerequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/openShifts/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/openShifts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleOpenShiftCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleOpenShiftCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}",
+ "OutputType": "IMicrosoftGraphSchedulingGroup",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSchedulingGroup",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleSchedulingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSchedulingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedulinggroup-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/schedulingGroups",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/schedulingGroups",
+ "OutputType": "IMicrosoftGraphSchedulingGroup",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSchedulingGroup",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleSchedulingGroup"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSchedulingGroup",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-schedulinggroups?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleSchedulingGroupCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSchedulingGroupCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}",
+ "OutputType": "IMicrosoftGraphShift",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Group.Read.All",
"Description": "Read all groups",
"FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
+ "Name": "Schedule.ReadWrite.All",
+ "Description": "Read and write your schedule items",
+ "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
- "Name": "Schedule.ReadWrite.All",
- "Description": "Read and write your schedule items",
- "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphShift",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shift-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/shifts",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shifts",
+ "OutputType": "IMicrosoftGraphShift",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphShift",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShift",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-shifts?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/shifts/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shifts/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleShiftCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShiftCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}",
+ "OutputType": "IMicrosoftGraphShiftsRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Schedule.ReadWrite.All",
- "Description": "Read and write all schedule items",
- "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SchedulePermissions.ReadWrite.All",
"Description": "Read/Write schedule permissions for a role",
"FullDescription": "Allows the app to read/write schedule permissions for a specific role in Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Schedule.ReadWrite.All",
+ "Description": "Read and write all schedule items",
+ "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphShiftsRoleDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions",
+ "OutputType": "IMicrosoftGraphShiftsRoleDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Schedule.ReadWrite.All",
- "Description": "Read and write all schedule items",
- "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SchedulePermissions.ReadWrite.All",
"Description": "Read/Write schedule permissions for a role",
"FullDescription": "Allows the app to read/write schedule permissions for a specific role in Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Schedule.ReadWrite.All",
+ "Description": "Read and write all schedule items",
+ "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphShiftsRoleDefinition",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
- },
- {
- "Name": "Schedule.ReadWrite.All",
- "Description": "Read and write all schedule items",
- "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "SchedulePermissions.ReadWrite.All",
"Description": "Read/Write schedule permissions for a role",
"FullDescription": "Allows the app to read/write schedule permissions for a specific role in Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Schedule.ReadWrite.All",
+ "Description": "Read and write all schedule items",
+ "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleShiftRoleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleShiftRoleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}",
"OutputType": "IMicrosoftGraphSwapShiftsChangeRequest",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/swapshiftschangerequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests",
+ "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/swapshiftschangerequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}",
+ "OutputType": "IMicrosoftGraphTimeCard",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeCard",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeCard",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeCards",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeCards",
+ "OutputType": "IMicrosoftGraphTimeCard",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeCard",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleTimeCard"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeCard",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeCards/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeCards/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "Schedule.Read.All",
"Description": "Read all schedule items",
"FullDescription": "Allows the app to read all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write all schedule items",
"FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeCardCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeCardCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}",
+ "OutputType": "IMicrosoftGraphTimeOff",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOff",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOff"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOff",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoff-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timesOff",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timesOff",
+ "OutputType": "IMicrosoftGraphTimeOff",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOff",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleTimeOff"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOff",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-timesoff?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timesOff/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timesOff/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}",
+ "OutputType": "IMicrosoftGraphTimeOffReason",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOffReason",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffReason"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffReason",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffreason-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffReasons",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffReasons",
+ "OutputType": "IMicrosoftGraphTimeOffReason",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOffReason",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffReason"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffReason",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-list-timeoffreasons?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffReasons/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffReasons/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffReasonCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffReasonCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}",
+ "OutputType": "IMicrosoftGraphTimeOffRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOffRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffrequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffRequests",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffRequests",
+ "OutputType": "IMicrosoftGraphTimeOffRequest",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOffRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timeoffrequest-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/schedule/timeOffRequests/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/schedule/timeOffRequests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
- "IsAdmin": true
- },
- {
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
- "IsAdmin": true
- },
{
"Name": "Schedule.Read.All",
"Description": "Read your schedule items",
"FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Schedule.ReadWrite.All",
"Description": "Read and write your schedule items",
"FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamScheduleTimeOffRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamScheduleTimeOffRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/getShifts",
"Module": "Beta.Teams",
+ "Uri": "/teams/getShifts",
+ "OutputType": "IMicrosoftGraphShift",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphShift",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamShift"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamShift",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/tags/{teamworkTag-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags/{teamworkTag-id}",
+ "OutputType": "IMicrosoftGraphTeamworkTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkTag",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktag-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/tags",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags",
+ "OutputType": "IMicrosoftGraphTeamworkTag",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkTag",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamTag"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTag",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktag-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/tags/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTagCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTagCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}",
+ "OutputType": "IMicrosoftGraphTeamworkTagMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkTagMember",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTagMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTagMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktagmember-get?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members",
+ "OutputType": "IMicrosoftGraphTeamworkTagMember",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkTagMember",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamTagMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTagMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworktagmember-list?view=graph-rest-1.0"
},
{
- "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/$count",
"Module": "Beta.Teams",
+ "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkTag.Read",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.Read.All",
"Description": "Read tags in Teams",
"FullDescription": "Allows the app to read tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkTag.ReadWrite",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
},
{
"Name": "TeamworkTag.ReadWrite.All",
"Description": "Read and write tags in Teams",
"FullDescription": "Allows the app to read and write tags in Teams without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTagMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTagMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/template",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/template",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/{team-id}/templateDefinition",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teams/{team-id}/templateDefinition",
"OutputType": "IMicrosoftGraphTeamTemplateDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamTemplateDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTemplateDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teams/getTimesOff",
"Module": "Beta.Teams",
+ "Uri": "/teams/getTimesOff",
+ "OutputType": "IMicrosoftGraphTimeOff",
+ "ApiVersion": "beta",
"Permissions": [
{
- "Name": "Directory.Read.All",
- "Description": "Read directory data",
- "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
- "Name": "Directory.ReadWrite.All",
- "Description": "Read and write directory data",
- "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.Group",
+ "Description": "Consent name unavailable",
+ "FullDescription": "Consent description unavailable",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.Read.All",
- "Description": "Read all groups",
- "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.ReadWrite.All",
+ "Description": "Read and change all teams' settings",
+ "FullDescription": "Read and change all teams' settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "Group.ReadWrite.All",
- "Description": "Read and write all groups",
- "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
- "IsAdmin": false
+ "Name": "TeamSettings.Read.All",
+ "Description": "Read all teams' settings",
+ "FullDescription": "Read all team's settings, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
"Name": "Team.ReadBasic.All",
"Description": "Get a list of all teams",
"FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.All",
- "Description": "Read all teams' settings",
- "FullDescription": "Read all team's settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Group.ReadWrite.All",
+ "Description": "Read and write all groups",
+ "FullDescription": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.Read.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Group.Read.All",
+ "Description": "Read all groups",
+ "FullDescription": "Allows the app to read group properties and memberships, and read conversations for all groups, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.All",
- "Description": "Read and change all teams' settings",
- "FullDescription": "Read and change all teams' settings, without a signed-in user.",
- "IsAdmin": false
+ "Name": "Directory.ReadWrite.All",
+ "Description": "Read and write directory data",
+ "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
},
{
- "Name": "TeamSettings.ReadWrite.Group",
- "Description": "Consent name unavailable",
- "FullDescription": "Consent description unavailable",
- "IsAdmin": false
+ "Name": "Directory.Read.All",
+ "Description": "Read directory data",
+ "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTimeOff",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamTimeOff"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamTimeOff",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Teamwork.Read.All",
- "Description": "Read organizational teamwork settings",
- "FullDescription": "Allows the app to read all teamwork settings of the organization without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teamwork",
"OutputType": "IMicrosoftGraphTeamwork",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamwork"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamwork",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedChats/{deletedChat-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedChats/{deletedChat-id}",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedChat"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedChat",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedChats",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedChats",
"OutputType": "IMicrosoftGraphDeletedChat",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedChat"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedChat",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedChats/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedChats/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkDeletedChatCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedChatCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}",
"OutputType": "IMicrosoftGraphDeletedTeam",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeam",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Team.ReadBasic.All",
- "Description": "Get a list of all teams",
- "FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams",
"OutputType": "IMicrosoftGraphDeletedTeam",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-list-deletedteams?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels",
"OutputType": "IMicrosoftGraphChannel",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannel"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannel",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder",
"OutputType": "IMicrosoftGraphDriveItem",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolder"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolder",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-filesfolder?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-get-members?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-members?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-messages?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-replies?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Delta",
"DeltaViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyDelta"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyDelta",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents",
"OutputType": "IMicrosoftGraphChatMessageHostedContent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/getAllRetainedMessages",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/getAllRetainedMessages",
"OutputType": "IMicrosoftGraphChatMessage",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelRetainedMessage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelRetainedMessage",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams",
"OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers",
"OutputType": "IMicrosoftGraphConversationMember",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/sharedwithchannelteaminfo-list-allowedmembers?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs",
"OutputType": "IMicrosoftGraphTeamsTab",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-list-tabs?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp",
"OutputType": "IMicrosoftGraphTeamsApp",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabTeamApp"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabTeamApp",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/deletedTeams/$count",
"Module": "Beta.Teams",
- "Permissions": {
- "Name": "Team.ReadBasic.All",
- "Description": "Get a list of all teams",
- "FullDescription": "Get a list of all teams, without a signed-in user.",
- "IsAdmin": false
- },
- "ApiVersion": "beta",
+ "Uri": "/teamwork/deletedTeams/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkDeletedTeamCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeletedTeamCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}",
+ "OutputType": "IMicrosoftGraphTeamworkDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices",
+ "OutputType": "IMicrosoftGraphTeamworkDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-list?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/activity",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/activity",
+ "OutputType": "IMicrosoftGraphTeamworkDeviceActivity",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDeviceActivity",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeviceActivity"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceActivity",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdeviceactivity-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration",
+ "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeviceConfiguration"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceConfiguration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdeviceconfiguration-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/$count",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/health",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/health",
+ "OutputType": "IMicrosoftGraphTeamworkDeviceHealth",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDeviceHealth",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeviceHealth"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceHealth",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevicehealth-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}",
+ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDeviceOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeviceOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdeviceoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/operations",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/operations",
+ "OutputType": "IMicrosoftGraphTeamworkDeviceOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamworkDeviceOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkDeviceOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdeviceoperation-list?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/$count",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkDevice.Read.All",
"Description": "Read Teams devices",
"FullDescription": "Allow the app to read the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkDevice.ReadWrite.All",
"Description": "Read and write Teams devices",
"FullDescription": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkDeviceOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkDeviceOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/teamsAppSettings",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/teamsAppSettings",
+ "OutputType": "IMicrosoftGraphTeamsAppSettings",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamworkAppSettings.Read.All",
"Description": "Read Teams app settings",
"FullDescription": "Allows the app to read the Teams app settings on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamworkAppSettings.ReadWrite.All",
"Description": "Read and write Teams app settings",
"FullDescription": "Allows the app to read and write the Teams app settings on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamsAppSettings",
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkTeamAppSetting"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamAppSetting",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamsappsettings-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/teamTemplates/{teamTemplate-id}",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/teamTemplates/{teamTemplate-id}",
"OutputType": "IMicrosoftGraphTeamTemplate",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkTeamTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplate",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/teamTemplates",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/teamTemplates",
+ "OutputType": "IMicrosoftGraphTeamTemplate",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamTemplates.Read",
"Description": "Read available Teams templates",
"FullDescription": "Read available Teams templates, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamTemplates.Read.All",
"Description": "Read all available Teams Templates",
"FullDescription": "Allows the app to read all available Teams Templates, without a signed-user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamTemplate",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkTeamTemplate"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplate",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamtemplate-list-definitions?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/teamTemplates/$count",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/teamTemplates/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamTemplates.Read",
"Description": "Read available Teams templates",
"FullDescription": "Read available Teams templates, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamTemplates.Read.All",
"Description": "Read all available Teams Templates",
"FullDescription": "Allows the app to read all available Teams Templates, without a signed-user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkTeamTemplateCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplateCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}",
+ "OutputType": "IMicrosoftGraphTeamTemplateDefinition",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "TeamTemplates.Read",
"Description": "Read available Teams templates",
"FullDescription": "Read available Teams templates, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "TeamTemplates.Read.All",
"Description": "Read all available Teams Templates",
"FullDescription": "Allows the app to read all available Teams Templates, without a signed-user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphTeamTemplateDefinition",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkTeamTemplateDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplateDefinition",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamtemplatedefinition-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions",
"OutputType": "IMicrosoftGraphTeamTemplateDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkTeamTemplateDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplateDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/$count",
"Module": "Beta.Teams",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkTeamTemplateDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkTeamTemplateDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}",
+ "OutputType": "IMicrosoftGraphWorkforceIntegration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "WorkforceIntegration.Read.All",
"Description": "Read workforce integrations",
"FullDescription": "Allows the app to read workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "WorkforceIntegration.ReadWrite.All",
"Description": "Read and write workforce integrations",
"FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWorkforceIntegration",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTeamworkWorkforceIntegration"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkWorkforceIntegration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/workforceintegration-get?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/workforceIntegrations",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/workforceIntegrations",
+ "OutputType": "IMicrosoftGraphWorkforceIntegration",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "WorkforceIntegration.Read.All",
"Description": "Read workforce integrations",
"FullDescription": "Allows the app to read workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "WorkforceIntegration.ReadWrite.All",
"Description": "Read and write workforce integrations",
"FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphWorkforceIntegration",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTeamworkWorkforceIntegration"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkWorkforceIntegration",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/workforceintegration-list?view=graph-rest-1.0"
},
{
- "Uri": "/teamwork/workforceIntegrations/$count",
"Module": "Beta.Teams",
+ "Uri": "/teamwork/workforceIntegrations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "WorkforceIntegration.Read.All",
"Description": "Read workforce integrations",
"FullDescription": "Allows the app to read workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "WorkforceIntegration.ReadWrite.All",
"Description": "Read and write workforce integrations",
"FullDescription": "Allows the app to manage workforce integrations, to synchronize data from Microsoft Teams Shifts, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTeamworkWorkforceIntegrationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTeamworkWorkforceIntegrationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}",
+ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminCustomer",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadmincustomer-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers",
"Module": "Beta.Identity.Partner",
- "Permissions": [
+ "Uri": "/tenantRelationships/delegatedAdminCustomers",
+ "OutputType": "IMicrosoftGraphDelegatedAdminCustomer",
+ "ApiVersion": "beta",
+ "Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminCustomer",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantrelationship-list-delegatedadmincustomers?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminCustomers/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}",
"Module": "Beta.Identity.Partner",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}",
"OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails",
+ "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadmincustomer-list-servicemanagementdetails?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationship",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationship-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationship",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationship",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantrelationship-list-delegatedadminrelationships?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}",
+ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminaccessassignment-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments",
+ "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationship-list-accessassignments?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationshipoperation-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationship-list-operations?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationshiprequest-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests",
+ "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/delegatedadminrelationship-list-requests?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count",
"Module": "Beta.Identity.Partner",
+ "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DelegatedAdminRelationship.Read.All",
"Description": "Read Delegated Admin relationships with customers",
"FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": true
},
{
"Name": "DelegatedAdminRelationship.ReadWrite.All",
"Description": "Manage Delegated Admin relationships with customers",
"FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "Application",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequestCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequestCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenant",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenant",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenant"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/tenants",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenants",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenant",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenant",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenant"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenant",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-tenants?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}",
"OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances",
+ "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-aggregatedpolicycompliances?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyComplianceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyComplianceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/{managedTenantApiNotification-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/{managedTenantApiNotification-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotificationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotificationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/{managedTenantEmailNotification-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/{managedTenantEmailNotification-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotificationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotificationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List",
"List1"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}/alert",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}/alert",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/{managedTenantAlert-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/{managedTenantAlert-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlertCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlertCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"Get1",
"GetViaIdentity",
"GetViaIdentity1"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/{managedTenantAlertRule-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/{managedTenantAlertRule-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRuleCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRuleCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}/alert",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}/alert",
"OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationAlert"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationAlert",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}",
"OutputType": "IMicrosoftGraphManagedTenantsAppPerformance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/appPerformances",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/appPerformances",
"OutputType": "IMicrosoftGraphManagedTenantsAppPerformance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/appPerformances/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/appPerformances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-auditevent-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/auditEvents",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/auditEvents",
"OutputType": "IMicrosoftGraphManagedTenantsAuditEvent",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-auditevents?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/auditEvents/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/auditEvents/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEventCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEventCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-cloudpcconnection-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcConnections",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcConnections",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-cloudpcconnections?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnectionCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnectionCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-cloudpcdevice-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcDevices",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcDevices",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-cloudpcdevices?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDeviceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDeviceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-cloudpcoverview-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview",
+ "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-cloudpcsoverview?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "CloudPC.Read.All",
"Description": "Read Cloud PCs",
"FullDescription": "Allows the app to read the properties of Cloud PCs, on your behalf.",
- "IsAdmin": false
+ "IsAdmin": false,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "CloudPC.ReadWrite.All",
"Description": "Read and write Cloud PCs",
"FullDescription": "Allows the app to read and write the properties of Cloud PCs, on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverviewCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverviewCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read applications",
- "FullDescription": "Allows the app to read applications and service principals on your behalf.",
- "IsAdmin": true
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read applications",
+ "FullDescription": "Allows the app to read applications and service principals on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-conditionalaccesspolicycoverage-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages",
+ "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage",
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read applications",
- "FullDescription": "Allows the app to read applications and service principals on your behalf.",
- "IsAdmin": true
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read applications",
+ "FullDescription": "Allows the app to read applications and service principals on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-conditionalaccesspolicycoverages?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
- {
- "Name": "Application.Read.All",
- "Description": "Read applications",
- "FullDescription": "Allows the app to read applications and service principals on your behalf.",
- "IsAdmin": true
- },
{
"Name": "Policy.Read.All",
"Description": "Read your organization's policies",
"FullDescription": "Allows the app to read your organization's policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "Policy.ReadWrite.ConditionalAccess",
"Description": "Read and write your organization's conditional access policies",
"FullDescription": "Allows the app to read and write your organization's conditional access policies on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
+ },
+ {
+ "Name": "Application.Read.All",
+ "Description": "Read applications",
+ "FullDescription": "Allows the app to read applications and service principals on your behalf.",
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverageCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverageCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/tenants/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenants/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}",
"OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-credentialuserregistrationssummary-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries",
"Module": "Beta.ManagedTenants",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries",
"OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-credentialuserregistrationssummaries?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": {
- "Name": "Reports.Read.All",
- "Description": "Read all usage reports",
- "FullDescription": "Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.",
- "IsAdmin": true
- },
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummaryCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummaryCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenantcustomizedinformation-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-tenantscustomizedinformation?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenantdetailedinformation-get?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation",
+ "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation",
- "Method": "GET",
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation",
+ "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managedtenant-list-tenantsdetailedinformation?view=graph-rest-1.0"
},
{
- "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/$count",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/$count",
+ "OutputType": null,
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "ManagedTenants.Read.All",
"Description": "Read all managed tenant information",
"FullDescription": "Allows the app to read all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "ManagedTenants.ReadWrite.All",
"Description": "Read and write all managed tenant information",
"FullDescription": "Allows the app to read and write all managed tenant information on your behalf.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": null,
- "Method": "GET",
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformationCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformationCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}",
"OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances",
"OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance",
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"List"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/$count",
"Module": "Beta.ManagedTenants",
- "Permissions": [],
- "ApiVersion": "beta",
+ "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/$count",
"OutputType": null,
- "Method": "GET",
+ "ApiVersion": "beta",
+ "Permissions": [],
"Variants": [
"Get"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformanceCount"
+ "Method": "GET",
+ "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformanceCount",
+ "ApiReferenceLink": null
},
{
- "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}",
"Module": "Beta.ManagedTenants",
+ "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}",
+ "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary",
+ "ApiVersion": "beta",
"Permissions": [
{
"Name": "DeviceManagementConfiguration.Read.All",
"Description": "Read Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": true
},
{
"Name": "DeviceManagementConfiguration.ReadWrite.All",
"Description": "Read and write Microsoft Intune Device Configuration and Policies",
"FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.",
- "IsAdmin": true
+ "IsAdmin": true,
+ "PermissionType": "DelegatedWork",
+ "IsLeastPrivilege": false
}
],
- "ApiVersion": "beta",
- "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary",
- "Method": "GET",
"Variants": [
"Get",
"GetViaIdentity"
],
- "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary"
+